basickernel/kernel/util.c

8 lines
127 B
C
Raw Normal View History

2018-02-26 14:02:25 +00:00
void memory_copy(char *src, char *dest, unsigned int n) {
unsigned int i;
for(i = 0; i < n; ++i)
{
dest[i] = src[i];
}
}