summaryrefslogtreecommitdiff
path: root/libc/string/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/string.c')
-rw-r--r--libc/string/string.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/libc/string/string.c b/libc/string/string.c
index d8b8e9f37..7ccc55733 100644
--- a/libc/string/string.c
+++ b/libc/string/string.c
@@ -79,6 +79,23 @@ char *stpcpy(char *dst, const char *src)
}
#endif
+/********************** Function stpncpy ************************************/
+
+#ifdef L_stpncpy
+char *stpncpy(char *dst, const char *src, size_t len)
+{
+ while (len--) {
+ if (*src)
+ *dst++ = *src++;
+ else
+ *dst++ = '\0';
+ }
+
+ return dst;
+}
+#endif
+
+
/********************** Function strcmp ************************************/
#ifdef L_strcmp