1 /* 2 * uhr_impl.h 3 * 4 * Autor: H.Drachenfels 5 * Erstellt am: 20.1.2018 6 */
7
8 #ifndef UHR_IMPL_H
9 #define UHR_IMPL_H
10
11 #include "uhr.h"
12
13 struct interface_uhr
14 {
15 void (*destruct)(uhr * const u);
16 void (*ablesen)(const uhr * const u, unsigned *s, unsigned *m);
17 };
18
19 #endif
20