mirror of
https://github.com/peterantypas/maiana.git
synced 2025-06-07 18:20:27 -07:00
10 lines
153 B
C
10 lines
153 B
C
#ifndef __HTTP_UTILS_H__
|
|
#define __HTTP_UTILS_H__
|
|
|
|
#include <esp_http_server.h>
|
|
|
|
|
|
int read_http_body(httpd_req_t *req, char *dest, int destLen);
|
|
|
|
#endif
|