This project is a C library for using in the future School 21's projects.
According to rules, only basic built-in functions are used, such as: malloc, write, read.
Here you can find more detailed description.
- ft_is: check incoming integer
- ft_lst: for working with linked lists
- ft_mem: memory operations
- ft_printf: self-made printf(), taken from this project
- ft_put: printing in different ways
- ft_str: string operations
- get_next_line: read and return one line from file with current fd, taken from this project
- translate: changing format of incoming data \
- make (compile)
- make clean (delete object files left after compilation)
- make fclean (delete object files and binary library file)
- make re (recompile all project)
gcc -I /libft_path/inc /libft_path/libft.a ...
All the code is written accoring to Norminette rules by School 21