Subversion Repositories WoWGM

Rev

Rev 20 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 20 Rev 27
Line 99... Line 99...
99
//===========================================================================
99
//===========================================================================
100
extern int SStrCmpI(char const* string1, char const* string2, DWORD maxchars)
100
extern int SStrCmpI(char const* string1, char const* string2, DWORD maxchars)
101
{
101
{
102
	// TODO: ASSERT(string1);
102
	// TODO: ASSERT(string1);
103
	// TODO: ASSERT(string2);
103
	// TODO: ASSERT(string2);
-
 
104
  int result = stricmp(string1, string2);
104
	return 0;
105
	return result;
105
}
106
}
106
 
107
 
107
//===========================================================================
108
//===========================================================================
108
inline DWORD SStrLen(char const* string)
109
inline DWORD SStrLen(char const* string)
109
{
110
{