-
Notifications
You must be signed in to change notification settings - Fork 0
/
fillit.c
27 lines (24 loc) · 1.06 KB
/
fillit.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* fillit.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ajon-hol <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/09/11 21:42:36 by ajon-hol #+# #+# */
/* Updated: 2019/09/12 17:50:16 by ajon-hol ### ########.fr */
/* */
/* ************************************************************************** */
#include "fillit.h"
int main(int argc, char **argv)
{
static int figs[26];
if (argc == 2)
{
if (reader(argv[1], figs))
solver(figs);
else
print("Error\n");
}
return (0);
}