xref: /reactos/sdk/lib/ucrt/mbstring/mbspbrk.cpp (revision fe93a3f9)
1 /***
2 *mbspbrk.c - Find first string char in charset, pointer return (MBCS)
3 *
4 *       Copyright (c) Microsoft Corporation.  All rights reserved.
5 *
6 *Purpose:
7 *       Find first string char in charset, pointer return (MBCS)
8 *       Shares common source file with mbscspn.c.
9 *
10 *******************************************************************************/
11 #ifndef _MBCS
12     #error This file should only be compiled with _MBCS defined
13 #endif
14 
15 #define _RETURN_PTR
16 #include "mbscspn.cpp"
17