cyrilcolinet / CPE_my_library

:shell: All basics C functions recoded in epitech CPool 2017. Including my_printf, my_malloc, my_realloc and all basics str functions and other

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

🐚 C Library - Used everything (only c projects) Build Status

This C library contains all the basic C functions like printf, strcat, etc...

πŸ’» Compilation

To compile, go into your project root folder, and make:

git clone https://github.com/mrlizzard/CPE_my_library.git lib

πŸ’‘ If you want to clone with the ssh protocol, replace the https link by ssh.

Command with ssh link: git clone git@github.com:mrlizzard/CPE_my_library.git lib

After clone, do this commands:

mkdir -p include
make -C ./lib

And if you see Library successfully compiled., Header(s) and static library(ies) copied. and the file my.h have been in your include folder, all is compiled and you can use the library by including the following flags in your C compilation:

-L./lib -lmy -I./include

❗ This library is in continuous integration and some functions may be broken...

❗ Some functions are not adapted to EPITECH C CODING STYLE 2017, but... Soon πŸ‘…

About

:shell: All basics C functions recoded in epitech CPool 2017. Including my_printf, my_malloc, my_realloc and all basics str functions and other


Languages

Language:C 67.2%Language:C++ 25.1%Language:Makefile 7.8%