No warnings
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m30s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m30s
This commit is contained in:
@@ -120,7 +120,6 @@ int isblank (int c) { return (c == ' ' || c == '\t'); }
|
||||
|
||||
/* SOURCE: https://aticleworld.com/memmove-function-implementation-in-c/ */
|
||||
void* memmove (void* dest, const void* src, unsigned int n) {
|
||||
unsigned char isCopyRequire = 0; // flag bit
|
||||
char* pcSource = (char*)src;
|
||||
char* pcDstn = (char*)dest;
|
||||
// return if pcDstn and pcSource is NULL
|
||||
|
||||
Reference in New Issue
Block a user