aboutsummaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'main.h')
-rw-r--r--main.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/main.h b/main.h
new file mode 100644
index 0000000..a653d50
--- /dev/null
+++ b/main.h
@@ -0,0 +1,18 @@
+#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);
+
+#endif \ No newline at end of file