mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
696 B
48 lines
696 B
/*++
|
|
|
|
Copyright (c) 1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
dlldbcs.h
|
|
|
|
Abstract:
|
|
|
|
Prototypes for OS/2 subsystem internal multibyte string functions
|
|
|
|
Author:
|
|
|
|
Akihiko Sasaki (V-AkihiS) 23-June-1993
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifdef DBCS
|
|
|
|
#include <string.h>
|
|
|
|
unsigned char * _CRTAPI1
|
|
Od2MultiByteStrchr(
|
|
const unsigned char *,
|
|
unsigned short
|
|
);
|
|
|
|
unsigned char * _CRTAPI1
|
|
Od2MultiByteStrrchr(
|
|
const unsigned char *,
|
|
unsigned short
|
|
);
|
|
|
|
unsigned char * _CRTAPI1
|
|
Od2MultiByteStrstr(
|
|
const unsigned char *,
|
|
const unsigned char *
|
|
);
|
|
|
|
unsigned char * _CRTAPI1
|
|
Od2MultiByteStrpbrk(
|
|
const unsigned char *,
|
|
const unsigned char *
|
|
);
|
|
#endif
|