mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
18 lines
339 B
C
18 lines
339 B
C
|
#ifndef HTTPD_COM_H
|
||
|
#define HTTPD_COM_H
|
||
|
|
||
|
#include <ctype.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <string.h>
|
||
|
#include <stdint.h>
|
||
|
#include "httpd-com.h"
|
||
|
|
||
|
typedef struct RtosConnType RtosConnType;
|
||
|
typedef RtosConnType* ConnTypePtr;
|
||
|
#define httpd_printf(fmt, ...) do { \
|
||
|
ets_printf(fmt, ##__VA_ARGS__); \
|
||
|
} while(0)
|
||
|
|
||
|
#endif
|