1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:14:58 +00:00

iLibC: Fix some missed camelCase => snake_case

This commit is contained in:
Andreas Kling 2021-04-29 10:15:28 +02:00
parent bebdf24329
commit 357a455b5c
3 changed files with 10 additions and 10 deletions

View file

@ -182,10 +182,10 @@ const void* memmem(const void* haystack, size_t haystack_length, const void* nee
char* strcpy(char* dest, const char* src)
{
char* originalDest = dest;
char* original_dest = dest;
while ((*dest++ = *src++) != '\0')
;
return originalDest;
return original_dest;
}
char* strncpy(char* dest, const char* src, size_t n)