From 8025e6b92a09fcf584c13fea3f04f2a0be9cbe64 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Tue, 31 Dec 2019 11:05:33 +0100 Subject: add memcpy --- strings.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'strings.h') diff --git a/strings.h b/strings.h index 7e772d3..1eb291c 100644 --- a/strings.h +++ b/strings.h @@ -1,6 +1,7 @@ #ifndef STRINGS_H #define STRINGS_H +#include #include void uint32_to_dec(uint32_t number, char buf[10]); @@ -23,4 +24,6 @@ void uint32_to_hexstringt(uint32_t number, char buf[9]); size_t strlen(char string[]); +void memcpy(void *dst, void *src, size_t nbytes); + #endif // STRINGS_H -- cgit v1.2.3