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

https://github.com/massigy/c-generic-linked-lists

This C program illustrates an implementation of generic programming using dynamic data structures, like single linked lists in this example.
https://github.com/massigy/c-generic-linked-lists

c cprogramming data-structures gcc git github linked-list makefile

Last synced: 7 months ago
JSON representation

This C program illustrates an implementation of generic programming using dynamic data structures, like single linked lists in this example.

Awesome Lists containing this project

README

          

# C GENERIC LINKED LISTS

### Description
This C program illustrates an implementation of generic programming using dynamic data structures, like single linked lists in this example.

### File Architecture
This is acheived using the tree unix command.

```BASH

.
├── headers/
│ ├── generic-linked-lists.h
│ ├── main.h
│ └── sys_headers.h
├── README.md
└── src/
├── build/
│ ├── generic-linked-lists.d
│ ├── generic-linked-lists.o
│ ├── main.d
│ └── main.o
├── generic-linked-lists.c
├── main
├── main.c
└── Makefile

3 directories, 12 files

```

### Usage

```BASH
git clone https://github.com/MassiGy/

cd ./src

make

./main

```