utils.h 246 B

123456789
  1. #ifndef _UTILS_H_
  2. #define _UTILS_H_
  3. #include "c_types.h"
  4. uint32_t ICACHE_FLASH_ATTR UTILS_Atoh(const int8_t *s);
  5. uint8_t ICACHE_FLASH_ATTR UTILS_StrToIP(const int8_t* str, void *ip);
  6. uint8_t ICACHE_FLASH_ATTR UTILS_IsIPV4 (int8_t *str);
  7. #endif