summaryrefslogtreecommitdiffstats
path: root/private/os2/inc/dlldbcs.h
blob: b0eac98f5ff03aa48452e52ef5137858ef743218 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*++

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