The Gaudi Framework
v40r0 (475e45c1)
strcasecmp.h
Go to the documentation of this file.
1
/***********************************************************************************\
2
* (c) Copyright 1998-2025 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
#pragma once
12
13
#ifdef _WIN32
14
# include <cstring>
15
inline
int
strcasecmp(
const
char
*
s1
,
const
char
*
s2
) { return ::_stricmp(
s1
,
s2
); }
16
inline
int
strncasecmp(
const
char
*
s1
,
const
char
*
s2
,
size_t
n
) { return ::_strnicmp(
s1
,
s2
,
n
); }
17
#else // Unix uses string.h
18
# include <string.h>
19
#endif
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 Thu Jul 3 2025 15:27:24 for The Gaudi Framework by
1.8.18