Wrote strlen() and strcpy()

This commit is contained in:
2020-11-18 13:36:09 -06:00
parent 29677e0391
commit c601aed9f2
4 changed files with 52 additions and 3 deletions

View File

@@ -13,4 +13,8 @@ extern "C" int memcmp(const void* ptr1, const void* ptr2, size_t num);
extern "C" void* memset(void* ptr, int value, size_t num);
extern "C" int strlen(const char* str);
extern "C" char* strcpy(char* destination, const char* source);
#endif