The Gaudi Framework
master (da3d77e1)
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
AlgSequencer.s1
s1
Definition:
AlgSequencer.py:35
cpluginsvc.n
n
Definition:
cpluginsvc.py:234
AlgSequencer.s2
s2
Definition:
AlgSequencer.py:36
GaudiKernel
include
GaudiKernel
strcasecmp.h
Generated on Mon Feb 24 2025 11:10:45 for The Gaudi Framework by
1.8.18