From 2990ce9b390ec1e2bfa1c043c406878e8aff86dd Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Thu, 21 Dec 2017 11:18:28 +0000 Subject: Big 2.6.3.0 reorganization - Add libposixplz, update headers - Add memmem and friends - Add textmessage to libunixonacid - Update some sysdeps tests --- src/libposixplz/strnlen.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/libposixplz/strnlen.c (limited to 'src/libposixplz/strnlen.c') diff --git a/src/libposixplz/strnlen.c b/src/libposixplz/strnlen.c new file mode 100644 index 0000000..1699771 --- /dev/null +++ b/src/libposixplz/strnlen.c @@ -0,0 +1,16 @@ +/* ISC license. */ + +#include + +#ifndef SKALIBS_HASSTRNLEN + +#include +#include +#include + +size_t strnlen (char const *s, size_t max) +{ + return byte_chr(s, max, 0) ; +} + +#endif -- cgit v1.2.3