-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbi_vars.c
113 lines (92 loc) · 2.12 KB
/
bi_vars.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/********************************************
bi_vars.c
copyright 2009,2010, Thomas E. Dickey
copyright 1991-1992,1993, Michael D. Brennan
This is a source file for mawk, an implementation of
the AWK programming language.
Mawk is distributed without warranty under the terms of
the GNU General Public License, version 2, 1991.
********************************************/
/*
* $MawkId: bi_vars.c,v 1.10 2010/12/10 17:00:00 tom Exp $
* @Log: bi_vars.c,v @
* Revision 1.1.1.1 1993/07/03 18:58:09 mike
* move source to cvs
*
* Revision 5.2 1992/07/10 16:17:10 brennan
* MsDOS: remove NO_BINMODE macro
*
* Revision 5.1 1991/12/05 07:55:38 brennan
* 1.1 pre-release
*
*/
/* bi_vars.c */
#include "mawk.h"
#include "symtype.h"
#include "bi_vars.h"
#include "field.h"
#include "init.h"
#include "memory.h"
/* the builtin variables */
CELL bi_vars[NUM_BI_VAR];
/* the order here must match the order in bi_vars.h */
static const char *bi_var_names[NUM_BI_VAR] =
{
"NR",
"FNR",
"ARGC",
"FILENAME",
"OFS",
"ORS",
"RLENGTH",
"RSTART",
"SUBSEP"
#if USE_BINMODE
,"BINMODE"
#endif
};
/* insert the builtin vars in the hash table */
void
bi_vars_init(void)
{
register int i;
register SYMTAB *s;
for (i = 0; i < NUM_BI_VAR; i++) {
s = insert(bi_var_names[i]);
s->type = (char) ((i <= 1) ? ST_NR : ST_VAR);
s->stval.cp = bi_vars + i;
/* bi_vars[i].type = 0 which is C_NOINIT */
}
s = insert("ENVIRON");
s->type = ST_ENV;
/* set defaults */
FILENAME->type = C_STRING;
FILENAME->ptr = (PTR) new_STRING("");
OFS->type = C_STRING;
OFS->ptr = (PTR) new_STRING(" ");
ORS->type = C_STRING;
ORS->ptr = (PTR) new_STRING("\n");
SUBSEP->type = C_STRING;
SUBSEP->ptr = (PTR) new_STRING("\034");
NR->type = FNR->type = C_DOUBLE;
/* dval is already 0.0 */
#if USE_BINMODE
BINMODE->type = C_DOUBLE;
#endif
}
#ifdef NO_LEAKS
void
bi_vars_leaks(void)
{
int n;
for (n = 0; n < NUM_BI_VAR; ++n) {
switch (bi_vars[n].type) {
case C_STRING:
case C_STRNUM:
case C_MBSTRN:
free_STRING(string(&bi_vars[n]));
break;
}
}
}
#endif