1
0
mirror of https://github.com/peterantypas/maiana.git synced 2025-06-07 18:20:27 -07:00
2022-12-05 07:19:04 -08:00

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