Open Model Railroad Network (OpenMRN)
Loading...
Searching...
No Matches
esp_predef.h
1#include <stdio.h>
2#include <stdarg.h>
3#include "ets_rom.h"
4
5int ets_vsprintf(char *str, const char *format, va_list ap);
6
7int tolower(int c);
8int toupper(int c);
9int isprint(int c);
10int islower(int c);
11int isupper(int c);
12int isalpha(int c);
13int isdigit(int c);
14int isspace(int c);