]> gitweb.factorcode.org Git - factor.git/commitdiff
libc: adding memmove
authorJohn Benediktsson <mrjbq7@gmail.com>
Wed, 24 Aug 2022 04:11:21 +0000 (21:11 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Wed, 24 Aug 2022 04:11:37 +0000 (21:11 -0700)
basis/libc/libc.factor

index 5490070397e0202909bb50bb8d1dadea17981b71..644f35954a846553fa9db57a509682ae9be521a8 100644 (file)
@@ -111,6 +111,8 @@ FUNCTION: void memset ( void* buf, int char, size_t size )
 
 FUNCTION: void memcpy ( void* dst, void* src, ulong size )
 
+FUNCTION: void memmove ( void* dst, void* src, ulong size )
+
 FUNCTION: int memcmp ( void* a, void* b, ulong size )
 
 : memory= ( a b size -- ? ) memcmp 0 = ; inline