mirror of
https://github.com/reactos/reactos.git
synced 2025-05-22 02:25:18 +00:00
17 lines
483 B
C++
17 lines
483 B
C++
![]() |
/***
|
||
|
*mbspbrk.c - Find first string char in charset, pointer return (MBCS)
|
||
|
*
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
*
|
||
|
*Purpose:
|
||
|
* Find first string char in charset, pointer return (MBCS)
|
||
|
* Shares common source file with mbscspn.c.
|
||
|
*
|
||
|
*******************************************************************************/
|
||
|
#ifndef _MBCS
|
||
|
#error This file should only be compiled with _MBCS defined
|
||
|
#endif
|
||
|
|
||
|
#define _RETURN_PTR
|
||
|
#include "mbscspn.cpp"
|