From b75cde0ec5d7bc6ce5057d9d6803032750e5853e Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Tue, 29 Nov 2016 16:54:45 +0100 Subject: [PATCH 1/3] Create README.md --- libft/README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 libft/README.md diff --git a/libft/README.md b/libft/README.md new file mode 100644 index 00000000..381f0130 --- /dev/null +++ b/libft/README.md @@ -0,0 +1,3 @@ +# libft + +personal C library From 98c624be7ff4fe3f5cc2fcf952a4695c4cd6a003 Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Tue, 29 Nov 2016 17:01:49 +0100 Subject: [PATCH 2/3] Update README.md --- libft/README.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/libft/README.md b/libft/README.md index 381f0130..83c02976 100644 --- a/libft/README.md +++ b/libft/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. From f048ddadecb0c656b77c1358e275ba262eada14b Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Tue, 29 Nov 2016 17:02:40 +0100 Subject: [PATCH 3/3] Update README.md --- libft/README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/libft/README.md b/libft/README.md index 83c02976..aaf37755 100644 --- a/libft/README.md +++ b/libft/README.md @@ -1,24 +1,22 @@ # libft -C library - -### libc +## libc malloc interface functions, string manipulation -### data structures +## data structures -- string (`char *`) +- 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 +## ft_printf printf rewrite -### get_next_line +## get_next_line read one line from a file descriptor, supports calls between multiple file descriptors.