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
/
strcpy.c
diff --git
a/lunaix-os/libs/libc/string/strcpy.c
b/lunaix-os/libs/libc/string/strcpy.c
deleted file mode 100644
(file)
index
0649802
..0000000
--- a/
lunaix-os/libs/libc/string/strcpy.c
+++ /dev/null
@@
-1,14
+0,0 @@
-#include <libc/string.h>
-
-char*
-strcpy(char* dest, const char* src) {
- char c;
- unsigned int i = 0;
- while ((c = src[i]))
- {
- dest[i] = c;
- i++;
- }
- dest[i] = '\0';
- return dest;
-}
\ No newline at end of file