HF_COLIN : Now able to read Known Mifare 1K key schemes from JSON Conf file from SPIFFS. BEWARE : DO NOT USE : Very Messy and early implementation

This commit is contained in:
cjbrigato 2019-07-31 01:32:16 +02:00
commit 3878f62168
8 changed files with 3162 additions and 78 deletions

View file

@ -27,5 +27,16 @@ char *strcpy(char *dst, const char *src);
char *strncpy(char *destination, const char *source, size_t num);
int strcmp(const char *s1, const char *s2);
char *strtok(char *s, const char *delim);
char *strchr(const char *s, int c);
size_t strspn(const char *s1, const char *s2);
char *strrchr(const char *s, int c);
size_t strcspn(const char *s1, const char *s2);
char *strpbrk(const char *s1, const char *s2);
int strncmp(const char * s1, const char * s2, size_t n);
char c_tolower(int c);
char c_isprint (unsigned char c);
#endif /* __STRING_H */