Changeset e07187d
- Timestamp:
- May 10, 2022, 12:29:36 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 5c231c1
- Parents:
- 65c9208
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/parseargs.cfa
r65c9208 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.