aboutsummaryrefslogtreecommitdiff
path: root/c12/:w
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-07-17 19:30:52 +0200
committerCharles <sircharlesaze@gmail.com>2019-07-17 19:30:52 +0200
commit880102ae9358db130ef67cc9a7177a1e1de76875 (patch)
treeb5929722cf123e7c1701f4bc164a905f79510bf5 /c12/:w
parentdcf89e9366538c70fc08ceaabd5b770f5d5b890d (diff)
downloadpiscine-880102ae9358db130ef67cc9a7177a1e1de76875.tar.gz
piscine-880102ae9358db130ef67cc9a7177a1e1de76875.tar.bz2
piscine-880102ae9358db130ef67cc9a7177a1e1de76875.zip
c10 tail stuff, c11 start, c12/c13 files
Diffstat (limited to 'c12/:w')
-rw-r--r--c12/:w32
1 files changed, 32 insertions, 0 deletions
diff --git a/c12/:w b/c12/:w
new file mode 100644
index 0000000..2b1fe54
--- /dev/null
+++ b/c12/:w
@@ -0,0 +1,32 @@
+#include <stdio.h>
+#include "ex00/ft_list.h"
+#include "ex00/ft_create_elem.c"
+#include "ex01/ft_list_push_front.c"
+/*#include "ex02/ft_list_size.c"*/
+/*#include "ex03/ft_list_last.c"*/
+/*#include "ex04/ft_list_push_back.c"*/
+/*#include "ex05/ft_list_push_strs.c"*/
+/*#include "ex06/ft_list_clear.c"*/
+/*#include "ex07/ft_list_at.c"*/
+/*#include "ex08/ft_list_reverse.c"*/
+/*#include "ex09/ft_list_foreach.c"*/
+/*#include "ex10/ft_list_foreach_if.c"*/
+/*#include "ex11/ft_list_find.c"*/
+/*#include "ex12/ft_list_remove_if.c"*/
+/*#include "ex13/ft_list_merge.c"*/
+/*#include "ex14/ft_list_sort.c"*/
+/*#include "ex15/ft_list_reverse_fun.c"*/
+/*#include "ex16/ft_sorted_list_insert.c"*/
+/*#include "ft_sorted_list_merge.c"*/
+
+int main()
+{
+ t_list *list = NULL;
+ int a = 4;
+ void *data = &a;
+
+ list = ft_create_elem(data);
+ printf("%d\n", list->data);
+
+
+}