Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework
v31r0 (aeb156f0)
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
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 ) { return ::_stricmp( s1, s2 ); }
7
inline
int
strncasecmp(
const
char
* s1,
const
char
* s2,
size_t
n
) { return ::_strnicmp( s1, s2, n ); }
8
#else // Unix uses string.h
9
# include <string.h>
10
#endif
11
12
#endif // GAUDIKERNEL_STRCASECMP_H
GaudiPluginService.cpluginsvc.n
n
Definition:
cpluginsvc.py:210
GaudiKernel
GaudiKernel
strcasecmp.h
Generated on Mon Feb 11 2019 17:48:16 for The Gaudi Framework by
1.8.11