aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string/strcat.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/mlibc/string/strcat.c')
-rw-r--r--src/userspace/mlibc/string/strcat.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/userspace/mlibc/string/strcat.c b/src/userspace/mlibc/string/strcat.c
index 2876604..0374e6c 100644
--- a/src/userspace/mlibc/string/strcat.c
+++ b/src/userspace/mlibc/string/strcat.c
@@ -2,9 +2,10 @@
void strcat(char *dest, const char *orig)
{
- size_t s_dest = strlen(dest);
- size_t s_orig = strlen(orig);
+ size_t s_dest = strlen(dest);
+ size_t s_orig = strlen(orig);
- for (size_t i = 0; i < s_orig; i++) dest[s_dest + i] = orig[i];
- dest[s_dest + s_orig] = 0;
+ for (size_t i = 0; i < s_orig; i++)
+ dest[s_dest + i] = orig[i];
+ dest[s_dest + s_orig] = 0;
} \ No newline at end of file