mity/c-reusables
Collection of highly reusable C utilities.
C Reusables Readme
Home: https://github.com/mity/c-reusables
Introduction
This repository is collection of assorted highly reusable C utilities.
The following rules apply:
-
Licensing: Only code under MIT or in Public Domain is accepted into the
repository. -
Distributing: Just taking the sources of your interest is enough.
Copyright notes and licensing terms are placed within each source file.
Additional files likeLICENSE.mdare not required to be distributed. -
Self-contained: Each module is single
*.csource file with single
*.hheader (or just the header in some cases) with no other dependencies
but system headers and standard C library. Each such module implements only
tightly related set of functions. Each header provides reasonable
documentation of the exposed functions and types. -
High portability: All POSIX compatible systems and Windows are supported.
Most other systems probably too.
Table of Contents
Directory data
-
data/buffer.[hc]: Simple growing buffer. It offers also a stack-like
interface (push, pop operations) and array-like interface. -
data/htable.[hc]: Simple growing intrusive hash table. -
data/list.h: Intrusive double-linked and single-linked lists. -
data/rbtree.[hc]: Intrusive red-black tree. -
data/value.[hc]: Simple value structure, capable of holding various scalar
types of data (booleans, numeric types, strings) and collections (arrays,
dictionaries) of such data. It allows to build structured data in run-time;
for example it can be used as an in-memory storage for JSON-like data.
Directory encode
-
encode/base64.[hc]: Encoding and decoding Base64. -
encode/hex.[hc]: Encoding and decoding of bytes into/from hexadecimal
notation (two hexadecimal digits per byte).
Directory hash
-
hash/crc32.[hc]: 32-bit cyclic redundancy check function. -
hash/fnv1a.[hc]: 32-bit and 64-bit Fowler-Noll-Vo (variant 1a) hash
functions.
Directory mem
-
mem/malloca.h:MALLOCA()andFREEA()macros, which are a portable
variant of_malloca()and_freea()from Windows SDKs by Microsoft.
MALLOCA()allocates on stack if requested size below some threshold,
for larger allocations it usesmalloc(). -
mem/memchunk.[hc]: A simple chunk allocator, useful when program needs
to incrementally allocate many (small) blocks of memory which are eventually
all freed at the same time. In that situation this allocator is much cheaper
both in memory (much smaller overhead per-individual allocation) as well
as in CPU cycles (general purposemalloc()is quite expensive).
Directory misc
-
misc/cmdline.[hc]: Lightweight command line (argc,argv) parsing. -
misc/defs.h: Defining set of basic and frequently used preprocessor macros
MIN,MAX,CLAMP,ABS,SIZEOF_ARRAY,OFFSETOF,CONTAINEROF
etc.
Directory win32 (Windows only)
win32/memstream.[hc]: Trivial memory-backed read-only implementation of
IStreamCOM interface.
Reporting Bugs
If you encounter any bug, please be so kind and report it. Unheard bugs cannot
get fixed. You can submit bug reports here: