Go to the documentation of this file.
18 namespace XrdMonArgParserConvert
21 static const char*
convert(
const char* s) {
35 sscanf(s,
"%lld", &x);
42 if ( 0 == strcasecmp(s,
"on") ) {
45 if ( 0 == strcasecmp(s,
"off") ) {
48 string ss(
"Expected 'on' or 'off', found "); ss += s;