18 lines
241 B
C
18 lines
241 B
C
|
#ifndef __HTTP_TEST_H
|
||
|
#define __HTTP_TEST_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "http_client.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
// HTTP GET测试函数
|
||
|
void http_test_request(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __HTTP_TEST_H */
|