aboutsummaryrefslogtreecommitdiff
path: root/libc/inc/str.h
diff options
context:
space:
mode:
authorMarvin Borner2020-11-22 19:22:31 +0100
committerMarvin Borner2020-11-22 19:22:31 +0100
commitd82b18c90710baf16239257272a740488fddf11c (patch)
tree9a59f9c4eb16a5d5050d430f1946d9997ae5e6db /libc/inc/str.h
parent608fcc4075c1f28207aa177ec2d9408cc3e5e0da (diff)
Added file-based HTTP server
And fixed/added some other things
Diffstat (limited to 'libc/inc/str.h')
-rw-r--r--libc/inc/str.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/inc/str.h b/libc/inc/str.h
index 65774e7..3156fb2 100644
--- a/libc/inc/str.h
+++ b/libc/inc/str.h
@@ -7,8 +7,10 @@
u32 strlen(const char *s);
char *strcpy(char *dst, const char *src);
+char *strncpy(char *dst, const char *src, u32 n);
char *strchr(const char *s, int c);
char *strcat(char *dst, const char *src);
+char *strncat(char *dst, const char *src, u32 n);
int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, u32 n);
char *strinv(char *s);