16 lines
229 B
C
16 lines
229 B
C
|
//
|
||
|
// Created by xajhuang on 2022/11/4.
|
||
|
//
|
||
|
|
||
|
#ifndef VCPE_PROJECT_HTTP_SVR_H
|
||
|
#define VCPE_PROJECT_HTTP_SVR_H
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
int http_svr_init();
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif//VCPE_PROJECT_HTTP_SVR_H
|