mirror of https://github.com/jeelabs/esp-link.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
245 B
10 lines
245 B
9 years ago
|
#ifndef _UTILS_H_
|
||
|
#define _UTILS_H_
|
||
|
|
||
|
#include <esp8266.h>
|
||
|
|
||
|
uint32_t ICACHE_FLASH_ATTR UTILS_Atoh(const int8_t* s);
|
||
|
uint8_t ICACHE_FLASH_ATTR UTILS_StrToIP(const int8_t* str, void* ip);
|
||
|
uint8_t ICACHE_FLASH_ATTR UTILS_IsIPV4(int8_t* str);
|
||
|
#endif
|