aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib/string.c')
-rw-r--r--src/kernel/lib/string.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/kernel/lib/string.c b/src/kernel/lib/string.c
index 11e6021..f9dfb99 100644
--- a/src/kernel/lib/string.c
+++ b/src/kernel/lib/string.c
@@ -9,7 +9,9 @@ size_t strlen(const char *str) {
size_t strcmp(const char *s1, const char *s2) {
size_t s_a = strlen(s1);
- for (size_t i = 0; i < s_a; i++) if (s1[i] != s2[i]) return 1;
+ for (size_t i = 0; i < s_a; i++)
+ if (s1[i] != s2[i])
+ return 1;
return 0;
}