aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-09-15 19:49:03 +0300
committerArnold D. Robbins <arnold@skeeve.com>2014-09-15 19:49:03 +0300
commitdc510090126eb27d2e0514f42a4da4863873903d (patch)
tree2006a0e42c4819682f4be5fd4b2645aee9683ca1 /awk.h
parent23681ec5b179a4e981781ce2daa08f61cb7317d4 (diff)
parent3fcce8a32e825dd10384d5276c420c2514442fe2 (diff)
downloadegawk-dc510090126eb27d2e0514f42a4da4863873903d.tar.gz
egawk-dc510090126eb27d2e0514f42a4da4863873903d.tar.bz2
egawk-dc510090126eb27d2e0514f42a4da4863873903d.zip
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'awk.h')
-rw-r--r--awk.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/awk.h b/awk.h
index 0b76aea2..cd055962 100644
--- a/awk.h
+++ b/awk.h
@@ -1373,6 +1373,9 @@ extern void negate_num(NODE *n);
typedef NODE *(*builtin_func_t)(int); /* function that implements a built-in */
extern builtin_func_t lookup_builtin(const char *name);
extern void install_builtins(void);
+extern bool is_alpha(int c);
+extern bool is_alnum(int c);
+extern bool is_identchar(int c);
/* builtin.c */
extern double double_to_int(double d);
extern NODE *do_exp(int nargs);