mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 15:21:11 +00:00
6 lines
97 B
C
6 lines
97 B
C
#include <string.h>
|
|
|
|
void bcopy(void *b1, void *b2, int length){
|
|
memmove(b2, b1, length);
|
|
}
|
|
|