This is a simple, singly linked list implementation in C. It is a slightly modified version of the code from Jacob Sorber's Linked List video. This project is a step in my journey to learn the C language to improve my core programming skills.
- WSL 2 running Ubuntu 20.04.3 LTS on Windows 11
- VSCode 1.63.0
- GNU Make 4.21.1
- clang 10.0.0-4ubuntu1
| Data Type | Naming Convention |
|---|---|
| Struct definitions | PascalCase |
| Const variables | UPPER_SNAKE_CASE |
| Other variables | camelCase |
| Functions | camelCase |
| File names | lower_snake_case |