-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalum1.h
52 lines (45 loc) · 1020 Bytes
/
alum1.h
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/*
** alum1.h for alum1 in /home/simon_w/Prog_Elem/alum1/CPE_2015_Allum1
**
** Made by Erwan Simon
** Login <simon_w@epitech.net>
**
** Started on Thu Feb 18 15:28:22 2016 Erwan Simon
** Last update Thu Feb 25 16:29:18 2016 Erwan Simon
*/
#include <stdarg.h>
#ifndef ALUM1_H_
# define ALUM1_H_
typedef struct s_return
{
int line;
int matches;
int error;
} t_return;
typedef struct s_var
{
char *ret;
int bol;
int pos;
} t_var;
typedef struct s_static
{
char blk[1];
int read_bit;
int a;
} t_static;
char *my_strdup(char *);
int *how_many_left(char **, int);
void flags(char, va_list);
char *get_next_line(const int);
int display(char **, int);
void my_printf(char *, ...);
char **remove_match(char **, int, int);
int my_getnbr(char *);
int my_putnbr(int);
void my_putchar(char);
void my_putstr(char *);
int my_strlen(char *);
int player_turn(char **);
void ia_turn(char **);
#endif /* !ALUM1_H_ */