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