mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
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:
parent
9f4620c92c
commit
3878f62168
8 changed files with 3162 additions and 78 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue