File: enum.h

package info (click to toggle)
mako-notifier 1.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: ansic: 6,081; xml: 240; makefile: 6
file content (14 lines) | stat: -rw-r--r-- 357 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef MAKO_ENUM_H_
#define MAKO_ENUM_H_

// State is intended to work as a bitmask, so if more need to be added in the
// future, this should be taken into account.
enum mako_parse_state {
	MAKO_PARSE_STATE_NORMAL = 0,
	MAKO_PARSE_STATE_ESCAPE = 1,
	MAKO_PARSE_STATE_QUOTE = 2,
	MAKO_PARSE_STATE_QUOTE_ESCAPE = 3,
	MAKO_PARSE_STATE_FORMAT = 4,
};

#endif