Chameleon

Chameleon Svn Source Tree

Root/branches/xZenu/src/modules/klibc/bcopy.c

Source at commit 1296 created 12 years 8 months ago.
By meklort, Add bcopy / sprintf to klibc
1/*
2 * memcpy.c
3 */
4
5#include <string.h>
6#include <stdint.h>
7
8void bcopy(const void *src, void *dst, size_t len)
9{
10memcpy(dst, src, len);
11}

Archive Download this file

Revision: 1296