summaryrefslogtreecommitdiff
path: root/src/libstddjb/str_strn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstddjb/str_strn.c')
-rw-r--r--src/libstddjb/str_strn.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/libstddjb/str_strn.c b/src/libstddjb/str_strn.c
index fef219b..b7c3090 100644
--- a/src/libstddjb/str_strn.c
+++ b/src/libstddjb/str_strn.c
@@ -1,6 +1,5 @@
/* ISC license. */
-#include <sys/types.h>
#include <string.h>
#include <skalibs/bytestr.h>
@@ -9,8 +8,8 @@ size_t str_strn (char const *haystack, size_t hlen, char const *needle, size_t n
char haystack2[hlen+1] ;
char needle2[nlen+1] ;
char *p ;
- byte_copy(haystack2, hlen, haystack) ; haystack2[hlen] = 0 ;
- byte_copy(needle2, nlen, needle) ; needle2[nlen] = 0 ;
+ memcpy(haystack2, haystack, hlen) ; haystack2[hlen] = 0 ;
+ memcpy(needle2, needle, nlen) ; needle2[nlen] = 0 ;
p = strstr(haystack2, needle2) ;
return p ? p - haystack2 : hlen ;
}