Implementation of a small standard library to work with strings and numbers. C library done for the libft project of School 19.
- ./conversion : conversions functions from int to string and the other way around.
- ./memory : memory related functions, see the man page of the related functions.
- ./string : string related functions, see the man page of the related functions.
- ./miscellaneous :
- ft_printf : simplified version of standard printf.
- ft_get_next_line : file related function returning the next line of the file.
See example.c for some libft usage examples.
To compile and run the example :
make
gcc example.c libft.a
./a.out