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

LinuxTV legacy CVS <linuxtv.org/cvs>