mirror of
https://github.com/reactos/reactos.git
synced 2025-06-18 14:05:20 +00:00

* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
9 lines
169 B
C
9 lines
169 B
C
#include <string.h>
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
unsigned char * _mbschr(const unsigned char *str, unsigned int c)
|
|
{
|
|
return (unsigned char *)strchr((const char*)str, c);
|
|
}
|