equal
deleted
inserted
replaced
45 // parse errors? What are those? |
45 // parse errors? What are those? |
46 return SUCCESS; |
46 return SUCCESS; |
47 } |
47 } |
48 |
48 |
49 /* |
49 /* |
50 * Tokens for output_token |
50 * Flags for output_token |
51 */ |
51 */ |
52 enum { |
52 enum output_token_flag { |
53 /* No space before token */ |
53 /* No space before token */ |
54 TOK_NOSPACE = 0x01, |
54 TOK_NOSPACE = 0x01, |
55 |
55 |
56 /* Prefix with :, may contain spaces, last token */ |
56 /* Prefix with :, may contain spaces, last token */ |
57 TOK_TRAILING = 0x02, |
57 TOK_TRAILING = 0x02, |