An open API service indexing awesome lists of open source software.

https://github.com/obsfx/doubly-linked-list

A doubly linked list data structure implementation in ANSI C
https://github.com/obsfx/doubly-linked-list

Last synced: about 2 months ago
JSON representation

A doubly linked list data structure implementation in ANSI C

Awesome Lists containing this project

README

          

# doubly linked list

[Doubly linked list - Wikipedia](https://en.wikipedia.org/wiki/Doubly_linked_list)

a doubly linked list implementation that was written in ANSI C to get more familiar with pointers.

to run the test app

```
git clone https://github.com/obsfx/doubly-linked-list.git
cd doubly-linked-list
make
./test
```