No warnings
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m30s

This commit is contained in:
2026-03-07 17:41:22 +01:00
parent 5e616c1879
commit 55d9b1fcd5
8 changed files with 6 additions and 10 deletions

View File

@@ -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