aboutsummaryrefslogtreecommitdiff
path: root/src/lib/strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/strings.c')
-rw-r--r--src/lib/strings.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/strings.c b/src/lib/strings.c
index 3155afa..674af19 100644
--- a/src/lib/strings.c
+++ b/src/lib/strings.c
@@ -10,6 +10,16 @@ unsigned long strlen(string_t s)
return len;
}
+void strcpy(string_t src, string_t dest)
+{
+ unsigned long idx = 0;
+ while (src[idx] != 0) {
+ dest[idx] = src[idx];
+ idx++;
+ }
+ dest[idx] = src[idx];
+}
+
unsigned char strcmp(string_t a, string_t b)
{
unsigned long idx = 0;