From 7ca62d6e4f0c88e6c606c1d82b8b6cbd36961478 Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Tue, 29 Nov 2016 17:01:49 +0100 Subject: [PATCH] Update README.md --- libftasm/README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/libftasm/README.md b/libftasm/README.md index 381f0130..83c02976 100644 --- a/libftasm/README.md +++ b/libftasm/README.md @@ -1,3 +1,24 @@ # libft -personal C library +C library + +### libc + +malloc interface functions, string manipulation + +### data structures + +- string (`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.