The Gaudi Framework
v33r0 (d5ea422b)
strcasecmp.h
Go to the documentation of this file.
1
/***********************************************************************************\
2
* (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
3
* *
4
* This software is distributed under the terms of the Apache version 2 licence, *
5
* copied verbatim in the file "LICENSE". *
6
* *
7
* In applying this licence, CERN does not waive the privileges and immunities *
8
* granted to it by virtue of its status as an Intergovernmental Organization *
9
* or submit itself to any jurisdiction. *
10
\***********************************************************************************/
11
#ifndef GAUDIKERNEL_STRCASECMP_H
12
#define GAUDIKERNEL_STRCASECMP_H
13
14
#ifdef _WIN32
15
# include <cstring>
16
inline
int
strcasecmp(
const
char
* s1,
const
char
* s2 ) { return ::_stricmp( s1, s2 ); }
17
inline
int
strncasecmp(
const
char
* s1,
const
char
* s2,
size_t
n
) { return ::_strnicmp( s1, s2,
n
); }
18
#else // Unix uses string.h
19
# include <string.h>
20
#endif
21
22
#endif // GAUDIKERNEL_STRCASECMP_H
GaudiPluginService.cpluginsvc.n
n
Definition:
cpluginsvc.py:221
GaudiKernel
GaudiKernel
strcasecmp.h
Generated on Mon Dec 16 2019 23:26:34 for The Gaudi Framework by
1.8.15