diff options
author | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-13 16:36:08 +0100 |
---|---|---|
committer | Leonard Kugis <leonardkugis@gmail.com> | 2018-01-13 16:36:08 +0100 |
commit | d4c120217549f928a01ef5a69b3760851e1fda8d (patch) | |
tree | dad9e81d4918b66c67abb354788e834986c55dea /main.h |
Initial commit
Diffstat (limited to 'main.h')
-rw-r--r-- | main.h | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -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 |