source: trunk/sys/dietlibc/wmemset.c @ 365

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

First import

File size: 136 bytes
Line 
1#include <wchar.h>
2
3wchar_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.