IDF release/v4.0 4c81978a3

This commit is contained in:
me-no-dev
2020-05-21 06:09:30 +00:00
parent 8c8d8610f4
commit d2761a9eab
82 changed files with 464 additions and 29 deletions

View File

@ -263,8 +263,7 @@ char * ets_strdup(const char *s);
#define os_strncpy(d, s, n) strncpy((d), (s), (n))
#endif
#ifndef os_strrchr
//hard cold
#define os_strrchr(s, c) NULL
#define os_strrchr(s, c) strrchr((s), (c))
#endif
#ifndef os_strstr
#define os_strstr(h, n) strstr((h), (n))