Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
145 halyavin 1
void* memchr(const void* buf,int c,int count)
2
{
3
  int i;
4
  for (i=0;i
5
    if (*(char*)buf==c)
6
      return (void*)buf;
7
    else
8
      buf++;
9
  return (void*)0;
10
}