mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
10 lines
169 B
C
10 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);
|
||
|
}
|