mirror of
https://github.com/jialexd/sdk-ameba-v4.0c_180328.git
synced 2024-11-01 03:44:17 +00:00
10 lines
327 B
C
Executable file
10 lines
327 B
C
Executable file
#ifndef _HTTP_H_
|
|
#define _HTTP_H_
|
|
|
|
char *http_post_header(char *address, char *resource, char *type, int data_len);
|
|
char *http_get_header(char *address, char *resource);
|
|
char *http_response_header(char *buf, int response_len);
|
|
char *http_response_body(char *buf, int response_len);
|
|
void http_free(void *buf);
|
|
|
|
#endif
|