File:  [DVB] / dietlibc / lib / wcslen.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>

size_t wcslen(const wchar_t* s) {
  size_t i;
  for (i=0; s[i]; ++i) ;
  return i;
}

LinuxTV legacy CVS <linuxtv.org/cvs>