1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-07-08 10:27:53 +00:00
reactos/sdk/lib/crt/mbstring/mbschr.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);
}