summaryrefslogtreecommitdiff
path: root/form.h
diff options
context:
space:
mode:
Diffstat (limited to 'form.h')
-rw-r--r--form.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/form.h b/form.h
index 3b7aa95178..ee055a5f5b 100644
--- a/form.h
+++ b/form.h
@@ -1,8 +1,13 @@
-/* $Header: form.h,v 2.0 88/06/05 00:09:01 root Exp $
+/* $Header: form.h,v 3.0 89/10/18 15:17:39 lwall Locked $
+ *
+ * Copyright (c) 1989, Larry Wall
+ *
+ * You may distribute under the terms of the GNU General Public License
+ * as specified in the README file that comes with the perl 3.0 kit.
*
* $Log: form.h,v $
- * Revision 2.0 88/06/05 00:09:01 root
- * Baseline version 2.0.
+ * Revision 3.0 89/10/18 15:17:39 lwall
+ * 3.0 baseline
*
*/
@@ -15,6 +20,8 @@
struct formcmd {
struct formcmd *f_next;
ARG *f_expr;
+ STR *f_unparsed;
+ line_t f_line;
char *f_pre;
short f_presize;
short f_size;
@@ -25,5 +32,8 @@ struct formcmd {
#define FC_CHOP 1
#define FC_NOBLANK 2
#define FC_MORE 4
+#define FC_REPEAT 8
#define Nullfcmd Null(FCMD*)
+
+EXT char *chopset INIT(" \n-");