f00b4r
[my-code/ivac.git] / src / ivac.h
1 /* ivac.h -- main ivac header file */
2
3 #ifndef IVAC_H
4 #define IVAC_H
5
6 /* includes */
7 #define _GNU_SOURCE
8 #include <stdio.h>
9
10 /* defines */
11 #define CHAR_USERNAME 32
12
13 /* variables */
14
15 typedef s_ivac {
16   char username[CHAR_USERNAME];
17   t_net net;
18   
19 } t_ivac;
20
21 #endif