summaryrefslogblamecommitdiffstats
path: root/private/os2/inc/dlldbcs.h
blob: b0eac98f5ff03aa48452e52ef5137858ef743218 (plain) (tree)















































                                                                     
/*++

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