summaryrefslogblamecommitdiffstats
path: root/private/os2/ldr/ldrdbcs.h
blob: f8ae6abe7162a05763ae7e31cbca5a946863f423 (plain) (tree)















































                                                                     
/*++

Copyright (c) 1993  Microsoft Corporation

Module Name:

    ldrdbcs.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 
ldrMultiByteStrchr(
    const unsigned char *, 
    unsigned short
    );

unsigned char * _CRTAPI1
ldrMultiByteStrrchr(
    const unsigned char *,
    unsigned short
    );

unsigned char * _CRTAPI1
ldrMultiByteStrstr(
    const unsigned char *,
    const unsigned char *
    );

unsigned char * _CRTAPI1
ldrMultiByteStrpbrk(
    const unsigned char *,
    const unsigned char *
    );
#endif