This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* An implementation of doubly linked lists in C. | |
* | |
* API: | |
* * init() | |
* Initializes a doubly linked list and returns it. | |
* * push( list, value ) | |
* Appends a new element with value to the list. | |
* * destroy( list, value ) | |
* Destroys the first element with value found in the list. |
NewerOlder