Changes in libcfa/src/parseargs.cfa [6f94958:e07187d]
- File:
-
- 1 edited
-
libcfa/src/parseargs.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseargs.cfa
r6f94958 re07187d 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 210 220 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) { 211 231 value = false; 212 232 return true;
Note:
See TracChangeset
for help on using the changeset viewer.