source:
trunk/sys/dietlibc/wmemcpy.c
@
95
Last change on this file since 95 was 1, checked in by , 8 years ago | |
---|---|
File size: 155 bytes |
Line | |
---|---|
1 | #include <wchar.h> |
2 | |
3 | wchar_t *wmemcpy(wchar_t *dest, const wchar_t *src, size_t n) { |
4 | size_t i; |
5 | for (i=0; i<n; ++i) |
6 | dest[i]=src[i]; |
7 | return dest; |
8 | } |
Note: See TracBrowser
for help on using the repository browser.