home *** CD-ROM | disk | FTP | other *** search
- #ifndef _TOKEN_H
- #define _TOKEN_H
- /*******************************************************************************
- *
- * T O K E N . H
- * -------------
- *
- * Description:
- * Includefile for token routines.
- *
- * Revision:
- * Ver Date By Reason
- * --- ---- -- ------
- * 1.00 900619 Lars Berntzon Created
- * 2.10 930517 Lars Berntzon Only GetTok needed
- *
- ******************************************************************************/
- #ifndef lint
- static volatile char sccs_token_h[] = "@(#) token.h,v 1.3 1993/05/13 21:55:50 lasse Exp";
- #endif
-
- /* D e f i n i t i o n s */
-
- #define TOKENSIZE 200 /* Maximal size of a token */
-
-
- /* G l o b a l v a r i a b l e s */
-
- extern int line; /* Current line number */
- extern FILE *in; /* Input file set by OpenTok() */
-
-
- /* G l o b a l f u n c t i o n s */
-
- extern char *GetTok(char *token, char *space); /* Get one token */
- extern FILE *OpenTok(char *filename); /* Open file for input */
- #endif /* _TOKEN_H */
-