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).
- Host: GitHub
- URL: https://github.com/mrvideo/list-library
- Owner: MrVideo
- License: gpl-3.0
- Created: 2022-08-05T14:14:28.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-14T21:47:11.000Z (almost 4 years ago)
- Last Synced: 2026-02-19T21:40:30.977Z (4 months ago)
- Language: C
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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