diff options
author | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-13 17:17:31 +0100 |
---|---|---|
committer | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-13 17:17:31 +0100 |
commit | 78109333d989fa678c3c864defc4ef9d170f58ce (patch) | |
tree | c31e0f73a272ea023a67e78f904642531e57bc50 /main.h | |
parent | d4c120217549f928a01ef5a69b3760851e1fda8d (diff) |
Initial commit
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 25 |
1 files changed, 8 insertions, 17 deletions
@@ -1,18 +1,9 @@ -#ifndef BLATT09_1_2 -#define BLATT09_1_2 - -#include "defs.h" - -typedef struct student{ - char *vorname; - char *nachname; - u32 matrikelnummer; - char *adresse; - u8 kurse; -} Student; - -int main(); -void print_studenten(); -void swap(Student *s1, Student *s2); - +#ifndef MAIN
+#define MAIN
+
+#include <gtk/gtk.h>
+#include "defs.h"
+
+int main(int argc, char **argv);
+
#endif
\ No newline at end of file |