source:
trunk/sys/dietlibc/wcscpy.c
@
204
| Last change on this file since 204 was 1, checked in by , 9 years ago | |
|---|---|
| File size: 177 bytes | |
| Line | |
|---|---|
| 1 | #include <wchar.h> |
| 2 | |
| 3 | wchar_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.
