aboutsummaryrefslogtreecommitdiff
path: root/main.h
blob: a653d50847da59419019ae10f38222178847e5ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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