From c90117251f11e03452ae9808ff8626016c7958a1 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 23 Nov 2019 00:28:03 +0100 Subject: Compiling with nasm --- main.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'main.c') diff --git a/main.c b/main.c index 0bf3354..3bf85d1 100644 --- a/main.c +++ b/main.c @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/11/22 02:02:24 by cacharle #+# #+# */ -/* Updated: 2019/11/22 21:00:30 by cacharle ### ########.fr */ +/* Updated: 2019/11/23 00:25:35 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -30,6 +30,7 @@ int check_base(const char*); void ft_list_push_front(t_list **begin_list, void *data); int ft_list_size(t_list *begin_list); +void ft_list_sort(t_list **begin_list, int (*cmp)()); int main() { @@ -46,8 +47,8 @@ int main() /* char *d = "bonjourasdfasdf"; */ /* printf("%s\n", ft_strcpy(c, d)); */ /* printf("%s\n", c); */ - /* */ - /* char *e = "\x03"; */ + + /* char *e = "\x01"; */ /* char *f = "\x02"; */ /* printf("%d\n", ft_strcmp(e, f)); */ /* printf("%d\n", strcmp(e, f)); */ @@ -66,6 +67,6 @@ int main() /* printf("%d\n", check_base("01")); */ - printf("%d\n", ft_atoi_base(" \t\v\r \n 1012h", "01")); + /* printf("%d\n", ft_atoi_base(" \t\v\r \n 1012h", "01")); */ return 0; } -- cgit