forked from dontcallmedom/spiff
-
Notifications
You must be signed in to change notification settings - Fork 2
/
token.c
37 lines (31 loc) · 823 Bytes
/
token.c
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
26
27
28
29
30
31
32
33
34
35
36
37
/* Copyright (c) 1988 Bellcore
** All Rights Reserved
** Permission is granted to copy or use this program, EXCEPT that it
** may not be sold for profit, the copyright notice must be reproduced
** on copies, and credit should be given to Bellcore where it is due.
** BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
*/
#ifndef lint
static char rcsid[]= "$Header: token.c,v 1.1 88/09/15 11:34:01 daniel Rel $";
#endif
#include "misc.h"
#include "token.h"
K_token _K_ato[K_MAXTOKENS]; /* storage for tokens */
K_token _K_bto[K_MAXTOKENS];
int _K_atm;
int _K_btm;
void
K_settoken(file,index,pointer)
int file;
int index;
K_token pointer;
{
if (file)
{
_K_bto[index] = pointer;
}
else
{
_K_ato[index] = pointer;
}
}