From d4c120217549f928a01ef5a69b3760851e1fda8d Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Sat, 13 Jan 2018 16:36:08 +0100 Subject: Initial commit --- main.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 main.h (limited to 'main.h') 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 -- cgit v1.2.1