*** empty log message ***
This commit is contained in:
parent
e106111984
commit
7053e8b0f4
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: extio.h,v 1.6 2006-07-28 10:34:22 bacon Exp $
|
* $Id: extio.h,v 1.7 2006-07-28 10:36:30 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _XP_AWK_EXTIO_H_
|
#ifndef _XP_AWK_EXTIO_H_
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: parse.c,v 1.143 2006-07-28 10:34:22 bacon Exp $
|
* $Id: parse.c,v 1.144 2006-07-28 10:36:30 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xp/awk/awk_i.h>
|
#include <xp/awk/awk_i.h>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: run.c,v 1.142 2006-07-28 10:34:22 bacon Exp $
|
* $Id: run.c,v 1.143 2006-07-28 10:36:30 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xp/awk/awk_i.h>
|
#include <xp/awk/awk_i.h>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* $Id: awk.c,v 1.55 2006-07-28 10:34:22 bacon Exp $
|
* $Id: awk.c,v 1.56 2006-07-28 10:38:16 bacon Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <xp/awk/awk.h>
|
#include <xp/awk/awk.h>
|
||||||
|
@ -4,7 +4,7 @@ CFLAGS = /nologo /MT /W3 /GR- /D_WIN32_WINNT=0x0400 -I..\..\.. -D__STAND_ALONE
|
|||||||
LDFLAGS = /libpath:..\..\bas /libpath:..\..\awk
|
LDFLAGS = /libpath:..\..\bas /libpath:..\..\awk
|
||||||
LIBS = xpawk.lib user32.lib
|
LIBS = xpawk.lib user32.lib
|
||||||
|
|
||||||
all: awk rex rex2
|
all: awk rex2
|
||||||
|
|
||||||
awk: awk.obj
|
awk: awk.obj
|
||||||
link /nologo /out:awk.exe $(LDFLAGS) $(LIBS) awk.obj
|
link /nologo /out:awk.exe $(LDFLAGS) $(LIBS) awk.obj
|
||||||
|
20
ase/test/awk/t18.awk
Normal file
20
ase/test/awk/t18.awk
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
/hello/
|
||||||
|
{
|
||||||
|
//print FILENAME;
|
||||||
|
print "**1**" $0;
|
||||||
|
//nextfile;
|
||||||
|
print "----------------";
|
||||||
|
}
|
||||||
|
|
||||||
|
/hello/
|
||||||
|
{
|
||||||
|
//print FILENAME;
|
||||||
|
print "**2**" $0;
|
||||||
|
nextfile;
|
||||||
|
print "----------------";
|
||||||
|
}
|
||||||
|
|
||||||
|
END
|
||||||
|
{
|
||||||
|
print "== END OF PROGRAM ==";
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user