File: only.h

package info (click to toggle)
trn4 4.0-test77-11
  • links: PTS, VCS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 3,640 kB
  • ctags: 3,719
  • sloc: ansic: 48,331; sh: 6,817; tcl: 1,696; yacc: 660; perl: 108; makefile: 24
file content (25 lines) | stat: -rw-r--r-- 607 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* only.h
 */
/* This software is copyrighted as detailed in the LICENSE file. */


#ifndef NBRA
#include "search.h"
#endif

EXT char* ngtodo[MAXNGTODO];		/* restrictions in effect */
EXT COMPEX* compextodo[MAXNGTODO];	/* restrictions in compiled form */

EXT int maxngtodo INIT(0);		/*  0 => no restrictions */
					/* >0 => # of entries in ngtodo */

EXT char empty_only_char INIT('o');

/* DON'T EDIT BELOW THIS LINE OR YOUR CHANGES WILL BE LOST! */

void only_init _((void));
void setngtodo _((char*));
bool inlist _((char*));
void end_only _((void));
void push_only _((void));
void pop_only _((void));