f00b4r
[my-code/ivac.git] / src / ivac.h
diff --git a/src/ivac.h b/src/ivac.h
new file mode 100644 (file)
index 0000000..9e171bd
--- /dev/null
@@ -0,0 +1,21 @@
+/* ivac.h -- main ivac header file */
+
+#ifndef IVAC_H
+#define IVAC_H
+
+/* includes */
+#define _GNU_SOURCE
+#include <stdio.h>
+
+/* defines */
+#define CHAR_USERNAME 32
+
+/* variables */
+
+typedef s_ivac {
+  char username[CHAR_USERNAME];
+  t_net net;
+  
+} t_ivac;
+
+#endif