27 lines
431 B
C
27 lines
431 B
C
#ifndef CANSID_H
|
|
#define CANSID_H
|
|
|
|
struct cansid_state {
|
|
enum {
|
|
CANSID_ESC,
|
|
CANSID_BRACKET,
|
|
CANSID_PARSE,
|
|
CANSID_BGCOLOR,
|
|
CANSID_FGCOLOR,
|
|
CANSID_EQUALS,
|
|
CANSID_ENDVAL,
|
|
} state;
|
|
unsigned char style;
|
|
unsigned char next_style;
|
|
};
|
|
|
|
struct color_char {
|
|
unsigned char style;
|
|
unsigned char ascii;
|
|
};
|
|
|
|
struct cansid_state cansid_init(void);
|
|
struct color_char cansid_process(struct cansid_state *state, char x);
|
|
|
|
#endif
|