-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfiller.c
More file actions
38 lines (33 loc) · 1.13 KB
/
filler.c
File metadata and controls
38 lines (33 loc) · 1.13 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
38
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* filler.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: passef <passef@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/01/04 15:44:39 by passef #+# #+# */
/* Updated: 2018/01/05 15:14:41 by passef ### ########.fr */
/* */
/* ************************************************************************** */
#include "includes/filler.h"
/*
** Funtions allowed :
write
malloc
free
read
perror
strerror
*/
int main(void)
{
int row;
int col;
char *line;
char **board;
char buffer[row][col];
int count;
count = 0;
read(1, buffer, count);
return (0);
}