Skip to content
/ lib Public

Own realization of some useful functions in C.

Notifications You must be signed in to change notification settings

okulinich/lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

libmx

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:

  1. gcc -c *.c - creating object files
  2. ar rcs libmx.a *.o - creating static library
  3. gcc your_file.c libmx.a - compiling your file with this lib

About

Own realization of some useful functions in C.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages