blob: 66672a8596d6e392881ffbd838904a9a0acf3740 (
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
49
50
51
52
53
54
55
56
|
//===========================================================================
// Copyright (C) 2000 Radical Entertainment Ltd. All rights reserved.
//
// Component: String Subsystem
//
// Description: Class definitions for a Unicode String UnicodeString
//
// Authors: Ian Gipson
//
// Revisions Date Author Revision
// 2000/10/23 IJG Created
//
//===========================================================================
// Recompilation protection flag.
#ifndef __SMSTRICMP_H
#define __SMSTRICMP_H
//===========================================================================
// Nested Includes
//===========================================================================
//===========================================================================
// Forward References
//===========================================================================
//===========================================================================
// Constants, Typedefs, and Macro Definitions (needed by external clients)
//===========================================================================
//===========================================================================
// Interface Definitions
//===========================================================================
//===========================================================================
//
// Description: performs a case independant string comparison on any platform
//
// Constraints:
//
//===========================================================================
int smStricmp( const char *string1, const char *string2 );
//===========================================================================
//
// Description: performs a case independant string comparison on any platform
// up to tCount characters
//
// Constraints:
//
//===========================================================================
int smStrincmp( const char *string1, const char *string2, int tCount);
#endif // End conditional inclusion
|