git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Implement APIC, RTC, basic ACPI parser and timer support
[lunaix-os.git]
/
lunaix-os
/
libs
/
libc
/
string
/
strlen.c
diff --git
a/lunaix-os/libs/libc/string/strlen.c
b/lunaix-os/libs/libc/string/strlen.c
deleted file mode 100644
(file)
index
8b26def
..0000000
--- a/
lunaix-os/libs/libc/string/strlen.c
+++ /dev/null
@@
-1,10
+0,0 @@
-#include <libc/string.h>
-
-size_t
-strlen(const char* str)
-{
- size_t len = 0;
- while (str[len])
- len++;
- return len;
-}
\ No newline at end of file