1 /*
2 
3    wnglobals.h - global variables used by various WordNet applications
4 
5    $Id: wnglobal.h,v 1.30 1997/09/02 16:31:18 wn Rel $
6 
7 */
8 
9 #ifndef _WNGLOBALS_
10 #define _WNGLOBALS_
11 
12 #include <stdio.h>
13 
14 extern char *wnrelease;		/* WordNet release/version number */
15 
16 extern char *lexfiles[];	/* names of lexicographer files */
17 extern char *ptrtyp[];		/* pointer characters */
18 extern char *partnames[];	/* POS strings */
19 extern char partchars[];	/* single chars for each POS */
20 extern char *adjclass[];	/* adjective class strings */
21 extern char *frametext[];	/* text of verb frames */
22 
23 
24 #endif /* _WNGLOBALS_ */
25