File:  [DVB] / dietlibc / lib / wcschr.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* wcschr(const wchar_t *wcs, wchar_t wc) {
  for (; *wcs; ++wcs)
    if (*wcs == wc)
      return (wchar_t*)wcs;
  return 0;
}

LinuxTV legacy CVS <linuxtv.org/cvs>