-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_struct.h
24 lines (21 loc) · 1.07 KB
/
main_struct.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main_struct.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nnaumenk <nnaumenk@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/08/19 22:12:53 by nnaumenk #+# #+# */
/* Updated: 2018/11/15 23:35:39 by nnaumenk ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef MAIN_STRUCT_H
# define MAIN_STRUCT_H
typedef struct s_alg
{
char *name_small;
char *name_big;
void (*alg_pointer)(void *);
void (*flag_pointer)(void *, int, char **);
} t_alg;
#endif