mirror of
https://github.com/ep00ch/lwip-contrib-mac.git
synced 2024-10-30 03:26:22 +00:00
16 lines
177 B
C
16 lines
177 B
C
#ifndef __SNTP_H__
|
|
#define __SNTP_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void sntp_init(void);
|
|
void sntp_stop(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __SNTP_H__ */
|