mirror of
https://github.com/reactos/reactos.git
synced 2025-05-21 10:05:35 +00:00

Imported from https://www.nuget.org/packages/Microsoft.Windows.SDK.CRTSource/10.0.22621.3 License: MIT
16 lines
507 B
C++
16 lines
507 B
C++
/***
|
|
*mbsspnp.c - Find first string char in charset, pointer return (MBCS)
|
|
*
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* Returns maximum leading segment of string consisting solely
|
|
* of characters from charset. Handles MBCS characters correctly.
|
|
*
|
|
*******************************************************************************/
|
|
#ifndef _MBCS
|
|
#error This file should only be compiled with _MBCS defined
|
|
#endif
|
|
|
|
#define _RETURN_PTR
|
|
#include "mbsspn.cpp"
|