Moved utility to util.[ch]
[iomenu.git] / util.h
blob5b81e7759806a1425fd3ee6ea66666ef093f9099
1 /* enums */
3 enum { FALSE = 0, TRUE = 1 };
4 enum { NEXT = 0, PREV = 1, BOTH = 2 };
6 /* macros */
8 #define LENGTH(x) (sizeof(x) / sizeof(*x))
9 #define CONTROL(char) (char ^ 0x40)
10 #define MIN(X, Y) (((X) < (Y)) ? (X) : (Y))
11 #define MAX(X, Y) (((X) > (Y)) ? (X) : (Y))
13 /* functions */
15 void die(const char *);
16 struct termios set_terminal(int);
17 char * expand_tabs(char *);