The Gaudi Framework
v25r3
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
strcasecmp.h
Go to the documentation of this file.
1
#ifndef GAUDIKERNEL_STRCASECMP_H
2
#define GAUDIKERNEL_STRCASECMP_H
3
4
#ifdef _WIN32
5
#include <cstring>
6
inline
int
strcasecmp(
const
char
*
s1
,
const
char
*
s2
) {
7
return ::_stricmp(s1, s2);
8
}
9
inline
int
strncasecmp(
const
char
*
s1
,
const
char
*
s2
,
size_t
n
) {
10
return ::_strnicmp(s1, s2, n);
11
}
12
#else // Unix uses string.h
13
#include <string.h>
14
#endif
15
16
#endif // GAUDIKERNEL_STRCASECMP_H
GaudiPluginService.cpluginsvc.n
list n
Definition:
cpluginsvc.py:217
ana.s1
string s1
Definition:
ana.py:142
ana.s2
string s2
Definition:
ana.py:143
GaudiKernel
GaudiKernel
strcasecmp.h
Generated on Wed Jul 9 2014 09:54:14 for The Gaudi Framework by
1.8.7