mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
656bef7bb7
Also add examples, docs and test apps for the HTTP Server.
10 lines
207 B
C
10 lines
207 B
C
#ifndef __HTTPD_TESTS_H__
|
|
#define __HTTPD_TESTS_H__
|
|
|
|
#include <http_server.h>
|
|
|
|
extern httpd_handle_t start_tests(void);
|
|
extern void stop_tests(httpd_handle_t hd);
|
|
|
|
#endif // __HTTPD_TESTS_H__
|