Help for this page

Select Code to Download


  1. or download this
    enum { TXT, BIN, WSPACE, UTF8, QUOT, ESC, SEP, CR, NL_EOLX, ..., NN };
    enum { EXFIELD, INFIELD = 1*NN, INQUOT = 2*NN, CRSEEN = 3*NN } state;
    ...
        default: error();
        }
        ...
    
  2. or download this
        enum { EXFIELD, INFIELD = 0x100, INQUOT = 0x200, CRS = 0x300 } sta
    +te;
        ...
        int action = cached->xlat[state + c];
        decode(action);
        ...