A library of miscellaneous C functions I've written over time.
Header | Code | Description |
---|---|---|
json.h | json.c | A JSON parser and serializer |
csv.h | csv.c | A set of functions to read, write and manipulate Comma Separated Values (CSV) files; They keep entire file file memory for manipulation |
csvstrm.h | no | A streaming CSV parser that reads a CSV file row-by-row. |
ini.h | ini.c | A parser for INI configuration files |
eval.h | eval.c | A mathematical expression evaluator |
wav.h | wav.c | Functions to load and store WAV files |
gc.h | gc.c | A mark-and-sweep garbage collector |
refcnt.h | refcnt.c | A reference counting garbage collector |
regex.h | regex.c | A simple regular expression pattern matcher |
list.h | list.c | A generic linked list implementation with extra helper functions |
hash.h | hash.c | A simple hash table implementation |
simil.h | simil.c | A function that compares the similarity of two strings |
getarg.h | getarg.c | An alternative to getopt() called getarg() for platforms without getopt() (such as for WIN32) |
utils.h | utils.h | A couple of utility functions. |
It is a collection of C code that I've implemented over the course of several years and used, tested and reused in several of my hobby projects.
These sources are provided under the terms of the unlicense:
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to http://unlicense.org/