aboutsummaryrefslogtreecommitdiffstats
path: root/awk.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2014-09-15 23:14:23 +0300
committerArnold D. Robbins <arnold@skeeve.com>2014-09-15 23:14:23 +0300
commit7ac81efe10795318427ad71f9c05b9c93442acfb (patch)
tree96dd46e7af2199895fcfbdaaa88f388c1b4f56e4 /awk.h
parent2323f97d55a79c302457d75443b2ffd529983083 (diff)
parentdc510090126eb27d2e0514f42a4da4863873903d (diff)
downloadegawk-7ac81efe10795318427ad71f9c05b9c93442acfb.tar.gz
egawk-7ac81efe10795318427ad71f9c05b9c93442acfb.tar.bz2
egawk-7ac81efe10795318427ad71f9c05b9c93442acfb.zip
Merge branch 'master' into comment, update ChangeLogs
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 540238e0..c59c4bf9 100644
--- a/awk.h
+++ b/awk.h
@@ -1374,6 +1374,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);