From 87046252346bb040e45e44bfc6cbbfda0e40cd44 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Wed, 28 Dec 2005 15:57:27 +0000 Subject: [PATCH] cvs CVS: ---------------------------------------------------------------------- --- ase/awk/prog.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ase/awk/prog.h diff --git a/ase/awk/prog.h b/ase/awk/prog.h new file mode 100644 index 00000000..294e2c9f --- /dev/null +++ b/ase/awk/prog.h @@ -0,0 +1,29 @@ +/* + * $Id: prog.h,v 1.1 2005-12-28 15:57:27 bacon Exp $ + */ + +#ifndef _XP_AWK_PROG_H_ +#define _XP_AWK_PROG_H_ + + +struct +{ + /* line number */ + xp_size_t linenum; + + union + { + const xp_char_t* func_name; + } ptn; + + union + { + struct + { + unsigned short nargs; + xp_awk_body_t body; + } func; + } act; +}; + +#endif