source: trunk/sys/dietlibc/wcscpy.c @ 17

Last change on this file since 17 was 1, checked in by alain, 7 years ago

First import

File size: 177 bytes
Line 
1#include <wchar.h>
2
3wchar_t* wcscpy(wchar_t *__restrict__ dest, const wchar_t *__restrict__ src) {
4  wchar_t* orig=dest;
5  for (; (*dest=*src); ++src,++dest) ;
6  return orig;
7}
Note: See TracBrowser for help on using the repository browser.