Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 983 Bytes

File metadata and controls

27 lines (22 loc) · 983 Bytes

⚙️ Mini C standard library

Release Language

Implementation of a small standard library to work with strings and numbers. C library done for the libft project of School 19.

Content

  • ./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.

Example

See example.c for some libft usage examples. To compile and run the example :

make
gcc example.c libft.a 
./a.out

Credits