575cbd4e53/tads3/vmregex.h

4063bbd56844345154c9701e8947d1cf18a0e731575cbd4e53566d3e6c12dc75fd867a6bf10307c3
299
     *   case-sensitive, so alphabetic characters in the pattern are matched
299
     *   case-sensitive, so alphabetic characters in the pattern are matched
300
     *   without regard to case.  
300
     *   without regard to case.  
301
     */
301
     */
302
    int case_sensitive : 1;
302
    unsigned int case_sensitive : 1;
303
303
304
    /* 
304
    /* 
305
     *   <MIN> or <MAX> match mode -- if this flag is set, we match the
305
     *   <MIN> or <MAX> match mode -- if this flag is set, we match the
306
     *   longest string in case of ambiguity; otherwise we match the
306
     *   longest string in case of ambiguity; otherwise we match the
307
     *   shortest.  
307
     *   shortest.  
308
     */
308
     */
309
    int longest_match : 1;
309
    unsigned int longest_match : 1;
310
310
311
    /* 
311
    /* 
312
     *   <FirstEnd> or <FirstBeg> match mode -- if this flag is set, we
312
     *   <FirstEnd> or <FirstBeg> match mode -- if this flag is set, we
313
     *   match (in a search) the string that starts first in case of
313
     *   match (in a search) the string that starts first in case of
314
     *   ambiguity; otherwise, we match the string that ends first 
314
     *   ambiguity; otherwise, we match the string that ends first 
315
     */
315
     */
316
    int first_begin : 1;
316
    unsigned int first_begin : 1;
317
};
317
};
318
318
319
/*
319
/*