code lint and optimize code style

This commit is contained in:
Nick Peng
2019-02-22 23:14:42 +08:00
parent c0c6fde39d
commit 7828f0ec27
28 changed files with 705 additions and 513 deletions

View File

@@ -1,12 +1,21 @@
#ifndef _SMART_DNS_SERVER_H
#define _SMART_DNS_SERVER_H
#ifdef __cpluscplus
extern "C" {
#endif
int dns_server_init(void);
int dns_server_run(void);
int dns_server_start(void);
void dns_server_stop(void);
void dns_server_exit(void);
#ifdef __cpluscplus
}
#endif
#endif