-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain3.z
More file actions
executable file
·37 lines (34 loc) · 1.36 KB
/
main3.z
File metadata and controls
executable file
·37 lines (34 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main3.z :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: luperez <luperez@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/05 18:50:35 by luperez #+# #+# */
/* Updated: 2014/11/13 05:06:10 by luperez ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <fcntl.h>
int main(void)
{
//int i;
//char *b;
//char **c;
//char str1[] = " * r*r rR***R ***************************tfjmfgyumtuym*gyu*";
//char str2[] = "rrrRRR";
//char **tab;
//i = 1;
//b = (char *)malloc(sizeof(char) * 20);
//t_list **lst;
//lst = malloc(sizeof(t_list));
//*lst = ft_lstnew("try", 3);
//ft_lstadd(lst, *lst);
//ft_lstmap(*lst, ft_putstr);
ft_putstr(NULL);
//ft_putchar('\n');
//ft_putstr(b);
//ft_puttabstr(tab);
return (0);
}