File:  [DVB] / dietlibc / lib / wcscpy.c
Revision 1.1: download - view: text, annotated - select for diffs
Fri Jul 15 18:34:03 2005 UTC (18 years, 10 months ago) by leitner
Branches: MAIN
CVS tags: HEAD
  beginnings of wide char string routines

#include <wchar.h>

wchar_t* wcscpy(wchar_t *__restrict__ dest, const wchar_t *__restrict__ src) {
  wchar_t* orig=dest;
  for (; (*dest=*src); ++src,++dest) ;
  return orig;
}

LinuxTV legacy CVS <linuxtv.org/cvs>