blob: e70b37186921f43835e49c608c8e97f5eacf167a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Rtext definitions
*/
#define PL_NOPBIT 4
#define PL_NARGBIT 12
#define PL_ARGMASK ((1<<PL_NARGBIT)-1)
#define PL_SPECIAL(op) (((-1<<PL_NOPBIT)|op)<<PL_NARGBIT)
#define PL_OP(t) ((t)&~PL_ARGMASK)
#define PL_ARG(t) ((t)&PL_ARGMASK)
#define PL_TAB PL_SPECIAL(0) /* # of tab stops before text */
#define PL_WRAP PL_SPECIAL(1)
void pltabsize(int, int); /* set min tab and tab size */
|