aboutsummaryrefslogtreecommitdiffstats
path: root/libc/strlen.c
diff options
context:
space:
mode:
authorEmulatedSeasons <89668582+EmulatedSeasons@users.noreply.github.com>2024-05-05 01:08:00 -0400
committerEmulatedSeasons <89668582+EmulatedSeasons@users.noreply.github.com>2024-05-05 01:08:00 -0400
commit4aa74dbe2a35a45668b33d688f17b680c2232572 (patch)
tree42794e2fe2ba653ccbf772bb02dbfda07f75943e /libc/strlen.c
parent2d59766eb330b9d15a9bcbcd7e1695809fc099c5 (diff)
improved makefile somewhat
Diffstat (limited to 'libc/strlen.c')
-rw-r--r--libc/strlen.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libc/strlen.c b/libc/strlen.c
new file mode 100644
index 0000000..441622a
--- /dev/null
+++ b/libc/strlen.c
@@ -0,0 +1,9 @@
+#include <string.h>
+
+size_t strlen(const char* str) {
+ size_t len = 0;
+ while (str[len]) {
+ ++len;
+ }
+ return len;
+} \ No newline at end of file