96 lines
2.1 KiB
C++
96 lines
2.1 KiB
C++
/*****************************************************************/
|
|
/** Microsoft Windows for Workgroups **/
|
|
/** Copyright (C) Microsoft Corp., 1991-1992 **/
|
|
/*****************************************************************/
|
|
|
|
/*
|
|
stricmp.cxx
|
|
NLS/DBCS-aware string class: stricmp method
|
|
|
|
This file contains the implementation of the stricmp method
|
|
for the STRING class. It is separate so that clients of STRING which
|
|
do not use this operator need not link to it.
|
|
|
|
FILE HISTORY:
|
|
beng 01/18/91 Separated from original monolithic .cxx
|
|
beng 02/07/91 Uses lmui.hxx
|
|
|
|
*/
|
|
|
|
#include "npcommon.h"
|
|
|
|
extern "C"
|
|
{
|
|
#include <netlib.h>
|
|
}
|
|
|
|
#if defined(DEBUG)
|
|
static const CHAR szFileName[] = __FILE__;
|
|
#define _FILENAME_DEFINED_ONCE szFileName
|
|
#endif
|
|
#include <npassert.h>
|
|
|
|
#include <npstring.h>
|
|
|
|
|
|
/*******************************************************************
|
|
|
|
NAME: NLS_STR::stricmp
|
|
|
|
SYNOPSIS: Case insensitive string compare w/ optional indices
|
|
|
|
ENTRY: nls - string against which to compare
|
|
istrStart1 (optional) - index into "this"
|
|
istrStart2 (optional) - index into "nls"
|
|
|
|
RETURNS: As the C runtime "strcmp".
|
|
|
|
NOTES: If either string is erroneous, return "match."
|
|
This runs contrary to the eqop.
|
|
|
|
Glock doesn't allow default parameters which require
|
|
construction; hence this member is overloaded multiply.
|
|
|
|
HISTORY:
|
|
johnl 11/15/90 Written
|
|
beng 07/23/91 Allow on erroneous strings;
|
|
simplified CheckIstr
|
|
|
|
********************************************************************/
|
|
|
|
INT NLS_STR::stricmp( const NLS_STR & nls ) const
|
|
{
|
|
if (QueryError() || !nls)
|
|
return 0;
|
|
|
|
return ::stricmpf( QueryPch(), nls.QueryPch() );
|
|
}
|
|
|
|
|
|
INT NLS_STR::stricmp(
|
|
const NLS_STR & nls,
|
|
const ISTR & istrStart1 ) const
|
|
{
|
|
if (QueryError() || !nls)
|
|
return 0;
|
|
|
|
CheckIstr( istrStart1 );
|
|
|
|
return ::stricmpf( QueryPch(istrStart1), nls.QueryPch() );
|
|
}
|
|
|
|
|
|
INT NLS_STR::stricmp(
|
|
const NLS_STR & nls,
|
|
const ISTR & istrStart1,
|
|
const ISTR & istrStart2 ) const
|
|
{
|
|
if (QueryError() || !nls)
|
|
return 0;
|
|
|
|
CheckIstr( istrStart1 );
|
|
nls.CheckIstr( istrStart2 );
|
|
|
|
return ::stricmpf( QueryPch(istrStart1), nls.QueryPch(istrStart2) );
|
|
}
|