File:  [DVB] / dietlibc / libugly / wmemset.c
Revision 1.1: download - view: text, annotated - select for diffs
Mon Oct 1 17:22:56 2007 UTC (16 years, 8 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
add wmemcmp, wmemcpy and wmemset

#include <wchar.h>

wchar_t *wmemset(wchar_t *wcs, wchar_t wc, size_t n) {
  size_t i;
  for (i=0; i<n; ++i) wcs[i]=wc;
  return wcs;
}

LinuxTV legacy CVS <linuxtv.org/cvs>