42-archive/libftasm/README.md
2016-11-29 17:02:40 +01:00

22 lines
408 B
Markdown

# libft
## libc
malloc interface functions, string manipulation
## data structures
- string anipulation (`char *`)
- string array manipulation (`char **`)
- linked list (`t_list`)
- double linked list (`t_dlist`)
- binary trees (`t_btree`)
- time struct (`t_mytime`)
## ft_printf
printf rewrite
## get_next_line
read one line from a file descriptor, supports calls between multiple file descriptors.