diff options
author | Marvin Borner | 2019-11-24 23:34:32 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-24 23:34:32 +0100 |
commit | bb57b124d1bb385d41747f50be7dd4f3625539c1 (patch) | |
tree | fe461afad63df40571784565e8d435cba8c8e59c /src/mlibc/string/strdup.c | |
parent | f9c50b9ff23e9a3e8db5826fef7a6e7ebb8af21d (diff) |
Major coding style reformatting -> Kernighan & Ritchie
This project now (hopefully) uses the same style recommended by Kernighan and Ritchie and used in the Linux Kernel
Diffstat (limited to 'src/mlibc/string/strdup.c')
-rw-r--r-- | src/mlibc/string/strdup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mlibc/string/strdup.c b/src/mlibc/string/strdup.c index 0cddd79..0aa36f7 100644 --- a/src/mlibc/string/strdup.c +++ b/src/mlibc/string/strdup.c @@ -1,7 +1,8 @@ #include <mlibc/string.h> #include <mlibc/stdlib.h> -char *strdup(const char *orig) { +char *strdup(const char *orig) +{ size_t s_orig = strlen(orig); char *ret = kmalloc(s_orig + 1); strcpy(ret, orig); |