Port fat_io_lib, mount atasd0mp1 as sys:
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
|
||||
void *memset(void *p, int c, size_t n);
|
||||
void *memcpy(void *dst, const void *src, size_t n);
|
||||
size_t strlen(char *s);
|
||||
size_t strlen(const char *s);
|
||||
int strcmp(const char *a, const char *b);
|
||||
size_t strcspn(const char *s, const char *reject);
|
||||
size_t strspn(const char *s, const char *accept);
|
||||
@ -14,5 +14,7 @@ char *strchr(const char *s, int c);
|
||||
int memcmp(const void *s1, const void *s2, int len);
|
||||
char *strstr(const char *str, const char *substring);
|
||||
char *strcat(char *dest, const char *src);
|
||||
int strncmp( const char * s1, const char * s2, size_t n );
|
||||
void strncpy( char* _dst, const char* _src, size_t _n );
|
||||
|
||||
#endif // STD_STRING_H_
|
||||
|
||||
Reference in New Issue
Block a user