Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseargs.cfa

    r789f279 r6f94958  
    2424#include "common.hfa"
    2525#include "limits.hfa"
    26 
    27 #pragma GCC visibility push(default)
    2826
    2927extern int cfa_args_argc __attribute__((weak));
     
    210208        }
    211209
    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 
    222210        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) {
    233211                value = false;
    234212                return true;
Note: See TracChangeset for help on using the changeset viewer.