Own realization of some useful functions in C.
There is more than 60 functions, some basic functions from standard C library (strdup, realloc etc.) and additional functions (strjoin, create_list etc.) that make using C more comfortable.
To compile them all and use as a library:
gcc -c *.c- creating object filesar rcs libmx.a *.o- creating static librarygcc your_file.c libmx.a- compiling your file with this lib