blob: 22a5624645c738508abaa97a918532a61ad608fb (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef STUBS_ESP_HTTP_SERVER_H
#define STUBS_ESP_HTTP_SERVER_H
#include "esp_err.h"
#include <stdint.h>
typedef void *httpd_handle_t;
typedef struct httpd_req httpd_req_t;
#endif
|