update things
This commit is contained in:
parent
d1ac414c5e
commit
eac07282a6
5 changed files with 83 additions and 20 deletions
|
|
@ -3,7 +3,10 @@
|
|||
|
||||
#include <stddef.h>
|
||||
|
||||
void memset(void* dst, int data, int sz);
|
||||
void memcpy(void* dst, void* src, int sz);
|
||||
void* memcpy(void* dst, const void* src, int sz);
|
||||
void* memset(void* dst, int data, int sz);
|
||||
char* strcat(char* dst, const char* src);
|
||||
int strlen(const char* src);
|
||||
char* strcpy(char* dst, const char* src);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue