summaryrefslogtreecommitdiff
path: root/package/toolbox/src/lib/string.h
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2018-02-25 13:53:05 +0000
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2018-02-25 13:53:11 +0000
commit9d7518c2cb43f1fb1eb54495899945523fd5dc99 (patch)
tree57fcfe56162934f5f78b3b22920623546c8d126c /package/toolbox/src/lib/string.h
parent30f5a076475d08daa882fa2e636a19200877aa33 (diff)
toolbox: add OpenADK toolbox for very small systems, thx Thorsten Glaser
Diffstat (limited to 'package/toolbox/src/lib/string.h')
-rw-r--r--package/toolbox/src/lib/string.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/package/toolbox/src/lib/string.h b/package/toolbox/src/lib/string.h
new file mode 100644
index 000000000..571cba664
--- /dev/null
+++ b/package/toolbox/src/lib/string.h
@@ -0,0 +1,9 @@
+#ifndef LIBOADK_STRING_H
+#define LIBOADK_STRING_H
+
+#include_next <string.h>
+
+size_t strlcat(char *, const char *, size_t);
+size_t strlcpy(char *, const char *, size_t);
+
+#endif