src/irc_line.c
changeset 123 dc80e4599fb8
parent 75 ff6272398d2e
child 190 69fd25c8484c
equal deleted inserted replaced
122:52ffbdb6bba1 123:dc80e4599fb8
    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,