Go to the source code of this file.
◆ checkArgument
#define checkArgument |
( |
|
argument | ) |
|
Value:{ \
auto x = argument(&argc, argv, &i); \
if (x == Recognized) continue; \
if (x == Errored) return x;\
if (x == Final) return x;\
}
Definition at line 67 of file trimalManager.cpp.
◆ LegacyFormatArgumentWrapper
#define LegacyFormatArgumentWrapper |
( |
|
arg, |
|
|
|
format |
|
) |
| |
Value:if (!strcmp(argv[*i], arg)) { \
oformats.emplace_back(format); \
return Recognized; \
}
Definition at line 389 of file trimalManager.cpp.
◆ stat_check
#define stat_check |
( |
|
stat | ) |
|
Value:if (!strcmp(argv[*i], "-" #stat )) { \
if (!stat) { \
stat = true; \
stats--; \
return Recognized; \
} else return NotRecognized; \
}
Definition at line 896 of file trimalManager.cpp.