Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 458 Bytes

File metadata and controls

54 lines (35 loc) · 458 Bytes

Libft

Libray compilation

Build

make

Clean Objects

make clean

Clean All

make fclean

Compiling with your project

clang -I./path/inc -L./path -lft example.c

API

ft_ctype

ft_stdlib

ft_string

list

create a new list

default

t_list *list;

if (!list_new(&list))
    return ALLOC_ERROR;

with initializer

delete a new list

memory