1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
#include <wibble/commandline/core.h>
#include <ctype.h>
#include <string.h>
namespace wibble {
namespace commandline {
bool ArgList::isSwitch(const const_iterator& iter)
{
return ArgList::isSwitch(*iter);
}
bool ArgList::isSwitch(const iterator& iter)
{
return ArgList::isSwitch(*iter);
}
bool ArgList::isSwitch(const std::string& str)
{
// No empty strings
if (str[0] == 0)
return false;
// Must start with a dash
if (str[0] != '-')
return false;
// Must not be "-" (usually it means 'stdin' file argument)
if (str[1] == 0)
return false;
// Must not be "--" (end of switches)
if (str == "--")
return false;
return true;
}
bool ArgList::isSwitch(const char* str)
{
// No empty strings
if (str[0] == 0)
return false;
// Must start with a dash
if (str[0] != '-')
return false;
// Must not be "-" (usually it means 'stdin' file argument)
if (str[1] == 0)
return false;
// Must not be "--" (end of switches)
if (strcmp(str, "--") == 0)
return false;
return true;
}
}
}
// vim:set ts=4 sw=4:
|