This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 5.0 alpha 2
[perl5.git] / form.h
CommitLineData
79072805 1/* $RCSfile: form.h,v $$Revision: 4.1 $$Date: 92/08/07 18:20:43 $
a687059c 2 *
6e21c824 3 * Copyright (c) 1991, Larry Wall
a687059c 4 *
6e21c824
LW
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Artistic License, as specified in the README file.
8d063cd8
LW
7 *
8 * $Log: form.h,v $
79072805
LW
9 * Revision 4.1 92/08/07 18:20:43 lwall
10 *
6e21c824
LW
11 * Revision 4.0.1.1 91/06/07 11:08:20 lwall
12 * patch4: new copyright notice
13 *
fe14fcc3
LW
14 * Revision 4.0 91/03/20 01:19:37 lwall
15 * 4.0 baseline.
8d063cd8
LW
16 *
17 */
18
79072805
LW
19#define FF_END 0
20#define FF_LINEMARK 1
21#define FF_LITERAL 2
22#define FF_SKIP 3
23#define FF_FETCH 4
24#define FF_CHECKNL 5
25#define FF_CHECKCHOP 6
26#define FF_SPACE 7
27#define FF_HALFSPACE 8
28#define FF_ITEM 9
29#define FF_CHOP 10
30#define FF_LINEGLOB 11
31#define FF_DECIMAL 12
32#define FF_NEWLINE 13
33#define FF_BLANK 14
34#define FF_MORE 15
a687059c 35