1 /* 2 * datum.h 3 * 4 * Beispielprogramm Systemprogrammierung: Kapselung mit C 5 * 6 * Autor: H.Drachenfels 7 * Erstellt am: 21.12.2017 8 */
9
10 #ifndef DATUM_H
11 #define DATUM_H
12
13 typedef struct class_datum datum;
14
15 datum* datum_heute(void);
16 datum* datum_vom(int t, int m, int j);
17 void datum_freigeben(datum *this_p);
18
19 void datum_ausgeben(datum *this_p);
20
21 #endif
22