ntp.h 222 B

12345678910111213
  1. //
  2. // Created by janco on 25-2-16.
  3. //
  4. #ifndef _Network_H
  5. #define _Network_H
  6. typedef enum {false, true} bool;
  7. extern bool NtpIsSyncing(void);
  8. extern void NtpInit(void);
  9. extern void GetTime(void);
  10. #endif /* _Network_H */