Changes in libcfa/src/parseargs.cfa [6f94958:789f279]
- File:
-
- 1 edited
-
libcfa/src/parseargs.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseargs.cfa
r6f94958 r789f279 24 24 #include "common.hfa" 25 25 #include "limits.hfa" 26 27 #pragma GCC visibility push(default) 26 28 27 29 extern int cfa_args_argc __attribute__((weak)); … … 208 210 } 209 211 212 if(strcmp(arg, "Y") == 0) { 213 value = true; 214 return true; 215 } 216 217 if(strcmp(arg, "y") == 0) { 218 value = true; 219 return true; 220 } 221 210 222 if(strcmp(arg, "no") == 0) { 223 value = false; 224 return true; 225 } 226 227 if(strcmp(arg, "N") == 0) { 228 value = false; 229 return true; 230 } 231 232 if(strcmp(arg, "n") == 0) { 211 233 value = false; 212 234 return true;
Note:
See TracChangeset
for help on using the changeset viewer.