Changes in libcfa/src/parseargs.cfa [e07187d:6f94958]
- File:
-
- 1 edited
-
libcfa/src/parseargs.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseargs.cfa
re07187d r6f94958 208 208 } 209 209 210 if(strcmp(arg, "Y") == 0) {211 value = true;212 return true;213 }214 215 if(strcmp(arg, "y") == 0) {216 value = true;217 return true;218 }219 220 210 if(strcmp(arg, "no") == 0) { 221 value = false;222 return true;223 }224 225 if(strcmp(arg, "N") == 0) {226 value = false;227 return true;228 }229 230 if(strcmp(arg, "n") == 0) {231 211 value = false; 232 212 return true;
Note:
See TracChangeset
for help on using the changeset viewer.