mongoose/src/arch_esp32.h

15 lines
214 B
C
Raw Normal View History

2020-12-05 19:26:32 +08:00
#pragma once
#if MG_ARCH == MG_ARCH_ESP32
#include <dirent.h>
#include <netdb.h>
#include <sys/stat.h>
2020-12-05 19:26:32 +08:00
#define MG_DIRSEP '/'
#define MG_INT64_FMT "%lld"
#ifndef MG_PATH_MAX
#define MG_PATH_MAX 128
#endif
2020-12-05 19:26:32 +08:00
#endif