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

https://github.com/mrvideo/list-library

A small library for the management of singly-linked lists in C (Note: all the functions are recursive).
https://github.com/mrvideo/list-library

Last synced: about 2 months ago
JSON representation

A small library for the management of singly-linked lists in C (Note: all the functions are recursive).

Awesome Lists containing this project

README

          

# List Library

A library for the management of singly-linked lists in C.

The nodes in this library contain two fields:

- `data`: a `string` variable
- `next`: the pointer to the next node