https://github.com/sergio0694/list_t
A parametric list in C with supports with LINQ-style functions and lambda expressions
https://github.com/sergio0694/list_t
Last synced: 7 months ago
JSON representation
A parametric list in C with supports with LINQ-style functions and lambda expressions
- Host: GitHub
- URL: https://github.com/sergio0694/list_t
- Owner: Sergio0694
- License: gpl-2.0
- Created: 2015-09-25T14:55:12.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-10-16T17:11:46.000Z (almost 7 years ago)
- Last Synced: 2025-01-26T06:41:49.256Z (9 months ago)
- Language: C
- Size: 40 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# List_T
A parametric list in C with support for LINQ-style functions and lambda expressions##### Generate object files with:
gcc -O2 -c Library\list_t.c Library\Introsort\introsort.c
##### Then get the static library using:ar rcs list_t.a list_t.o introsort.o
##### Now just add the .a file in your project folder and compile with "list_t.a"