├── 1988 ├── doc │ ├── awkcc.1 │ └── doc1 ├── orig │ ├── README │ ├── awkcc │ │ ├── arrstack.c │ │ ├── awk.g.y │ │ ├── awk.lx.l │ │ ├── awkcc.h │ │ ├── awkcc.sh.basic │ │ ├── comp.c │ │ ├── emit.c │ │ ├── emitfunc.c │ │ ├── emitppmm.c │ │ ├── emitstmt.c │ │ ├── fix.c │ │ ├── funcs.h │ │ ├── getopt.c │ │ ├── main.c │ │ ├── makefile │ │ ├── misc.c │ │ ├── misc.h │ │ ├── node.c │ │ ├── parse.h │ │ ├── prefuncall.c │ │ ├── print.c │ │ ├── printop.c │ │ ├── stack.c │ │ ├── structs.h │ │ ├── symtab.c │ │ ├── tempvar.c │ │ ├── tokens.h │ │ ├── type.c │ │ ├── walk.c │ │ ├── write.c │ │ └── y.tab.h │ ├── lib │ │ ├── assignvars.c │ │ ├── awk.h │ │ ├── awkerr.c │ │ ├── awkmod.c │ │ ├── awkparse.c │ │ ├── awkrun.c │ │ ├── clear_htb.c │ │ ├── clearctest.c │ │ ├── copystr.c │ │ ├── delete.c │ │ ├── docomp.c │ │ ├── docompN.c │ │ ├── dollars.h │ │ ├── ear.h │ │ ├── filedrop.c │ │ ├── fileget.c │ │ ├── free_array.c │ │ ├── getd.c │ │ ├── getrec.c │ │ ├── gsub.c │ │ ├── hash.h │ │ ├── header.h │ │ ├── index.c │ │ ├── insert.c │ │ ├── isreg.c │ │ ├── lines.c │ │ ├── make_array.c │ │ ├── make_buckets.c │ │ ├── make_elem.c │ │ ├── make_str.c │ │ ├── make_var.c │ │ ├── makefile │ │ ├── member.c │ │ ├── misc.c │ │ ├── n_insert.c │ │ ├── newb.c │ │ ├── number.c │ │ ├── opennext.c │ │ ├── pipeget.c │ │ ├── printD0.c │ │ ├── print_var.c │ │ ├── regexp.c │ │ ├── resize.c │ │ ├── resplitrec.c │ │ ├── rgetrec.c │ │ ├── s_insert.c │ │ ├── setctest.c │ │ ├── specassign.h │ │ ├── split.c │ │ ├── split2.c │ │ ├── split3.c │ │ ├── splitrec.c │ │ ├── sresize.c │ │ ├── strsplitrec.c │ │ ├── substr.c │ │ ├── xprintf.c │ │ └── y.tab.h │ └── makefile └── src │ ├── README │ ├── awkcc │ ├── arrstack.c │ ├── awk.g.y │ ├── awk.lx.l │ ├── awkcc.h │ ├── awkcc.sh.basic │ ├── comp.c │ ├── emit.c │ ├── emitfunc.c │ ├── emitppmm.c │ ├── emitstmt.c │ ├── fix.c │ ├── funcs.h │ ├── getopt.c │ ├── main.c │ ├── makefile │ ├── misc.c │ ├── misc.h │ ├── node.c │ ├── parse.h │ ├── prefuncall.c │ ├── print.c │ ├── printop.c │ ├── stack.c │ ├── structs.h │ ├── symtab.c │ ├── tempvar.c │ ├── tokens.h │ ├── type.c │ ├── walk.c │ ├── write.c │ └── y.tab.h │ ├── lib │ ├── assignvars.c │ ├── awk.h │ ├── awkerr.c │ ├── awkmod.c │ ├── awkparse.c │ ├── awkrun.c │ ├── clear_htb.c │ ├── clearctest.c │ ├── copystr.c │ ├── delete.c │ ├── docomp.c │ ├── docompN.c │ ├── dollars.h │ ├── ear.h │ ├── filedrop.c │ ├── fileget.c │ ├── free_array.c │ ├── getd.c │ ├── getrec.c │ ├── gsub.c │ ├── hash.h │ ├── header.h │ ├── index.c │ ├── insert.c │ ├── isreg.c │ ├── lines.c │ ├── make_array.c │ ├── make_buckets.c │ ├── make_elem.c │ ├── make_str.c │ ├── make_var.c │ ├── makefile │ ├── member.c │ ├── misc.c │ ├── n_insert.c │ ├── newb.c │ ├── number.c │ ├── opennext.c │ ├── pipeget.c │ ├── printD0.c │ ├── print_var.c │ ├── regexp.c │ ├── resize.c │ ├── resplitrec.c │ ├── rgetrec.c │ ├── s_insert.c │ ├── setctest.c │ ├── specassign.h │ ├── split.c │ ├── split2.c │ ├── split3.c │ ├── splitrec.c │ ├── sresize.c │ ├── strsplitrec.c │ ├── substr.c │ ├── xprintf.c │ └── y.tab.h │ └── makefile ├── 2011 ├── Makefile ├── README.exptools ├── awkcc.npd ├── awkcc20 │ ├── awkcc │ │ ├── arrstack.c │ │ ├── awk.g.y │ │ ├── awk.lx.c │ │ ├── awk.lx.l │ │ ├── awkcc.h │ │ ├── awkcc.sh │ │ ├── awkcc.sh.basic │ │ ├── comp.c │ │ ├── emit.c │ │ ├── emitfunc.c │ │ ├── emitppmm.c │ │ ├── emitstmt.c │ │ ├── fix.c │ │ ├── funcs.h │ │ ├── funcs.h.stdarg │ │ ├── funcs.h.varargs │ │ ├── getopt.c │ │ ├── main.c │ │ ├── makefile │ │ ├── misc.c │ │ ├── misc.c.stdarg │ │ ├── misc.c.varargs │ │ ├── misc.h │ │ ├── node.c │ │ ├── parse.h │ │ ├── prefuncall.c │ │ ├── print.c │ │ ├── printop.c │ │ ├── stack.c │ │ ├── structs.h │ │ ├── symtab.c │ │ ├── tempvar.c │ │ ├── tokens.h │ │ ├── type.c │ │ ├── walk.c │ │ ├── write.c │ │ └── y.tab.h │ ├── idocs │ │ ├── awkcc.fts │ │ ├── awkcc.rs │ │ ├── awkcc.sts │ │ └── note.sol_2.5 │ ├── lib │ │ ├── D0.c │ │ ├── awk.h │ │ ├── awkerr.c │ │ ├── awkerr.c.stdarg │ │ ├── awkerr.c.varargs │ │ ├── awkparse.c │ │ ├── awkrun.c │ │ ├── b.c │ │ ├── comparisons.c │ │ ├── ctest.c │ │ ├── dollars.h │ │ ├── ear.h │ │ ├── files.c │ │ ├── getd.c │ │ ├── getrec.c │ │ ├── gsub.c │ │ ├── hash.c │ │ ├── hash.h │ │ ├── header.h │ │ ├── lines.c │ │ ├── make_array.c │ │ ├── make_elem.c │ │ ├── make_str.c │ │ ├── make_var.c │ │ ├── makefile │ │ ├── misc.c │ │ ├── misc.c.stdarg │ │ ├── misc.c.varargs │ │ ├── opennext.c │ │ ├── resplitrec.c │ │ ├── specassign.h │ │ ├── split.c │ │ ├── split2.c │ │ ├── split3.c │ │ ├── splitrec.c │ │ ├── strsplitrec.c │ │ ├── xprintf.c │ │ ├── xprintf.c.stdarg │ │ ├── xprintf.c.varargs │ │ └── y.tab.h │ ├── man │ │ ├── awkcc.1 │ │ ├── awkcc.cover │ │ └── awkcc.mm │ ├── pkg │ │ ├── i386 │ │ │ ├── copyright │ │ │ ├── pkginfo │ │ │ ├── postremove │ │ │ └── prototype │ │ ├── i486 │ │ │ ├── README.depend │ │ │ ├── copyright │ │ │ ├── depend │ │ │ ├── pkginfo │ │ │ ├── postinstall │ │ │ ├── prototype │ │ │ └── request │ │ ├── sparc │ │ │ ├── README.depend │ │ │ ├── copyright │ │ │ ├── depend │ │ │ ├── pkginfo │ │ │ ├── prototype │ │ │ └── request │ │ ├── uts │ │ │ ├── awkcc │ │ │ │ ├── README.oam │ │ │ │ ├── copyright │ │ │ │ ├── pkginfo │ │ │ │ ├── protopre4 │ │ │ │ ├── protosvr4 │ │ │ │ └── prototype │ │ │ └── awkccsrc │ │ │ │ ├── README.oam │ │ │ │ ├── copyright │ │ │ │ ├── pkginfo │ │ │ │ └── prototype │ │ └── uts4 │ │ │ ├── README.depend │ │ │ ├── copyright │ │ │ ├── pkginfo │ │ │ ├── prototype │ │ │ └── request │ ├── src │ │ ├── INSTALL │ │ ├── README.awkcc │ │ ├── awkcc.mk │ │ ├── awkcc.mk.uts │ │ ├── makefile.i386 │ │ ├── makefile.ilinux │ │ ├── makefile.sun │ │ ├── makefile.uts │ │ ├── makefile.uts4 │ │ └── mfilechg │ └── test │ │ ├── Compare │ │ ├── CompleteWith.e │ │ ├── CompleteWith.error │ │ ├── awker.c │ │ ├── cc │ │ ├── eventemp │ │ ├── foo │ │ ├── gawk │ │ ├── glop │ │ ├── junk1 │ │ ├── junk2 │ │ ├── nawk │ │ ├── oddtemp │ │ ├── p.1 │ │ ├── p.10 │ │ ├── p.11 │ │ ├── p.12 │ │ ├── p.13 │ │ ├── p.14 │ │ ├── p.15 │ │ ├── p.16 │ │ ├── p.17 │ │ ├── p.18 │ │ ├── p.19 │ │ ├── p.2 │ │ ├── p.20 │ │ ├── p.21 │ │ ├── p.22 │ │ ├── p.23 │ │ ├── p.24 │ │ ├── p.25 │ │ ├── p.26 │ │ ├── p.26a │ │ ├── p.27 │ │ ├── p.28 │ │ ├── p.29 │ │ ├── p.3 │ │ ├── p.30 │ │ ├── p.31 │ │ ├── p.32 │ │ ├── p.33 │ │ ├── p.34 │ │ ├── p.35 │ │ ├── p.36 │ │ ├── p.37 │ │ ├── p.38 │ │ ├── p.39 │ │ ├── p.4 │ │ ├── p.40 │ │ ├── p.41 │ │ ├── p.42 │ │ ├── p.43 │ │ ├── p.44 │ │ ├── p.45 │ │ ├── p.46 │ │ ├── p.47 │ │ ├── p.48 │ │ ├── p.48a │ │ ├── p.48b │ │ ├── p.49 │ │ ├── p.5 │ │ ├── p.50 │ │ ├── p.51 │ │ ├── p.52 │ │ ├── p.5a │ │ ├── p.6 │ │ ├── p.7 │ │ ├── p.8 │ │ ├── p.9 │ │ ├── q.amptest1 │ │ ├── q.amptest10 │ │ ├── q.amptest11 │ │ ├── q.amptest12 │ │ ├── q.amptest2 │ │ ├── q.amptest3 │ │ ├── q.amptest4 │ │ ├── q.amptest5 │ │ ├── q.amptest6 │ │ ├── q.amptest6b │ │ ├── q.amptest6c │ │ ├── q.amptest7 │ │ ├── q.amptest7b │ │ ├── q.amptest7c │ │ ├── q.amptest8 │ │ ├── q.amptest9 │ │ ├── q.comint │ │ ├── q.comint.c │ │ ├── q.comint.cc │ │ ├── q.comint2 │ │ ├── q.dollartest1 │ │ ├── q.dollartest2 │ │ ├── q.dollartest3 │ │ ├── q.foobar │ │ ├── q.hfl8 │ │ ├── t.0 │ │ ├── t.00 │ │ ├── t.1 │ │ ├── t.1.x │ │ ├── t.2 │ │ ├── t.2.x │ │ ├── t.3 │ │ ├── t.3.x │ │ ├── t.4 │ │ ├── t.4.x │ │ ├── t.5.x │ │ ├── t.6 │ │ ├── t.6.x │ │ ├── t.6a │ │ ├── t.6b │ │ ├── t.777 │ │ ├── t.779 │ │ ├── t.780 │ │ ├── t.8.x │ │ ├── t.909 │ │ ├── t.909.cc │ │ ├── t.a1 │ │ ├── t.a2 │ │ ├── t.aeiou │ │ ├── t.aeiouy │ │ ├── t.argc │ │ ├── t.argc2 │ │ ├── t.argv │ │ ├── t.arith │ │ ├── t.arith2 │ │ ├── t.array │ │ ├── t.array1 │ │ ├── t.array2 │ │ ├── t.arrc │ │ ├── t.asdf │ │ ├── t.asdf333 │ │ ├── t.asdfasdf │ │ ├── t.asdfasdf2 │ │ ├── t.asdfasdf3 │ │ ├── t.asgn │ │ ├── t.ass │ │ ├── t.assert │ │ ├── t.avg │ │ ├── t.awk │ │ ├── t.b.x │ │ ├── t.bbbad1 │ │ ├── t.blh999 │ │ ├── t.break │ │ ├── t.break1 │ │ ├── t.break2 │ │ ├── t.break3 │ │ ├── t.bthassign │ │ ├── t.bug1 │ │ ├── t.builtins │ │ ├── t.cat │ │ ├── t.cat1 │ │ ├── t.cat2 │ │ ├── t.cindex │ │ ├── t.cmdline │ │ ├── t.cmdline99 │ │ ├── t.cmdline_proc │ │ ├── t.cmp │ │ ├── t.coerce │ │ ├── t.comment │ │ ├── t.comment1 │ │ ├── t.concat │ │ ├── t.cond │ │ ├── t.cond2 │ │ ├── t.cont │ │ ├── t.cont3 │ │ ├── t.contin │ │ ├── t.count │ │ ├── t.countend │ │ ├── t.cum │ │ ├── t.cut1 │ │ ├── t.d.x │ │ ├── t.delete │ │ ├── t.delete3 │ │ ├── t.delete4 │ │ ├── t.delinloop │ │ ├── t.dobreak │ │ ├── t.dobreak2 │ │ ├── t.dobreak3 │ │ ├── t.dolawk │ │ ├── t.doll │ │ ├── t.doll2 │ │ ├── t.doll3 │ │ ├── t.doll4 │ │ ├── t.doublea │ │ ├── t.doubleb │ │ ├── t.doublec │ │ ├── t.doublesp │ │ ├── t.e │ │ ├── t.else │ │ ├── t.emitppmm │ │ ├── t.empty │ │ ├── t.endprint │ │ ├── t.exit │ │ ├── t.exit1 │ │ ├── t.exit2 │ │ ├── t.f │ │ ├── t.f.x │ │ ├── t.f0 │ │ ├── t.f1 │ │ ├── t.f2 │ │ ├── t.f3 │ │ ├── t.f4 │ │ ├── t.fix_this │ │ ├── t.foo │ │ ├── t.foobar │ │ ├── t.foobar3 │ │ ├── t.foobar4 │ │ ├── t.foobar99 │ │ ├── t.for │ │ ├── t.for1 │ │ ├── t.for2 │ │ ├── t.format4 │ │ ├── t.freea │ │ ├── t.fret │ │ ├── t.fs │ │ ├── t.fs2 │ │ ├── t.fun │ │ ├── t.fun2 │ │ ├── t.fun3 │ │ ├── t.fun4 │ │ ├── t.fun5 │ │ ├── t.getline │ │ ├── t.gets │ │ ├── t.gsub │ │ ├── t.gsub1 │ │ ├── t.gsub3 │ │ ├── t.hello │ │ ├── t.hfl100 │ │ ├── t.hfl99 │ │ ├── t.hflconv │ │ ├── t.i.x │ │ ├── t.if │ │ ├── t.if1 │ │ ├── t.if2 │ │ ├── t.if3 │ │ ├── t.in │ │ ├── t.in1 │ │ ├── t.in2 │ │ ├── t.in3 │ │ ├── t.incr │ │ ├── t.incr2 │ │ ├── t.incr3 │ │ ├── t.index │ │ ├── t.inter │ │ ├── t.intest │ │ ├── t.intest2 │ │ ├── t.j.x │ │ ├── t.jcrtest │ │ ├── t.johnbug │ │ ├── t.lbs │ │ ├── t.lessthan │ │ ├── t.longstr │ │ ├── t.makef │ │ ├── t.match │ │ ├── t.max │ │ ├── t.min │ │ ├── t.mod │ │ ├── t.monotone │ │ ├── t.nameval │ │ ├── t.newbg │ │ ├── t.newcat │ │ ├── t.newestfromda │ │ ├── t.newjlb │ │ ├── t.next │ │ ├── t.next3 │ │ ├── t.nf │ │ ├── t.nf3 │ │ ├── t.nonl │ │ ├── t.not │ │ ├── t.nr │ │ ├── t.null │ │ ├── t.null0 │ │ ├── t.numbers │ │ ├── t.oddarr │ │ ├── t.oddball │ │ ├── t.oddball1 │ │ ├── t.ofmt │ │ ├── t.ofmt3456 │ │ ├── t.ofmt3457 │ │ ├── t.ofs │ │ ├── t.ors │ │ ├── t.ost100 │ │ ├── t.ost99 │ │ ├── t.pass │ │ ├── t.pass2 │ │ ├── t.pass3 │ │ ├── t.pat │ │ ├── t.pipe │ │ ├── t.pow2 │ │ ├── t.pp │ │ ├── t.pp1 │ │ ├── t.pp2 │ │ ├── t.ppdoll │ │ ├── t.prepost │ │ ├── t.printf │ │ ├── t.printf3 │ │ ├── t.quest │ │ ├── t.quest2 │ │ ├── t.quest3 │ │ ├── t.quote │ │ ├── t.randk │ │ ├── t.re1 │ │ ├── t.re2 │ │ ├── t.re7 │ │ ├── t.reFS │ │ ├── t.rec │ │ ├── t.redir │ │ ├── t.reg │ │ ├── t.reg1 │ │ ├── t.rete │ │ ├── t.rjj │ │ ├── t.rjj2 │ │ ├── t.roff │ │ ├── t.sad1 │ │ ├── t.sep │ │ ├── t.seqno │ │ ├── t.set0 │ │ ├── t.set0a │ │ ├── t.set0b │ │ ├── t.set1 │ │ ├── t.set2 │ │ ├── t.set3 │ │ ├── t.smallnum │ │ ├── t.sp │ │ ├── t.split │ │ ├── t.split2 │ │ ├── t.split9 │ │ ├── t.split9a │ │ ├── t.splitfoo │ │ ├── t.stately │ │ ├── t.stderr │ │ ├── t.strcmp │ │ ├── t.strcmp1 │ │ ├── t.sub │ │ ├── t.sub1 │ │ ├── t.sub2 │ │ ├── t.subsephfl │ │ ├── t.substr │ │ ├── t.substr1 │ │ ├── t.tb │ │ ├── t.tb2 │ │ ├── t.testfreeftm │ │ ├── t.time │ │ ├── t.toupper │ │ ├── t.toupper2 │ │ ├── t.vf │ │ ├── t.vf1 │ │ ├── t.vf2 │ │ ├── t.vf3 │ │ ├── t.w │ │ ├── t.wmb │ │ ├── t.wolit │ │ ├── t.x │ │ ├── t.xPP │ │ ├── t.yly │ │ ├── t1 │ │ ├── test.countries │ │ ├── test.data │ │ ├── test.out │ │ ├── testall │ │ └── tmpfile ├── awkccsrc.npd ├── awkccsrc.nsb ├── misc-arch │ ├── cygwin │ │ └── lib │ │ │ └── awkcc │ │ │ └── awkcc.sh │ ├── darwin │ │ └── lib │ │ │ └── awkcc │ │ │ └── awkcc.sh │ ├── hppa │ │ └── lib │ │ │ └── awkcc │ │ │ └── awkcc.sh │ ├── idarwin │ │ └── lib │ │ │ └── awkcc │ │ │ └── awkcc.sh │ ├── ilinux │ │ └── lib │ │ │ └── awkcc │ │ │ └── awkcc.sh │ ├── isolaris │ │ └── lib │ │ │ └── awkcc │ │ │ └── awkcc.sh │ ├── sgi │ │ └── lib │ │ │ └── awkcc │ │ │ └── awkcc.sh │ ├── solaris │ │ └── lib │ │ │ └── awkcc │ │ │ └── awkcc.sh │ └── ssolaris │ │ └── lib │ │ └── awkcc │ │ └── awkcc.sh └── misc │ ├── bin │ └── awkcc │ ├── lib │ └── toolnews │ │ └── awkcc │ └── man │ └── man1 │ └── awkcc.1 ├── LICENSE └── README.md /1988/doc/awkcc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/doc/awkcc.1 -------------------------------------------------------------------------------- /1988/doc/doc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/doc/doc1 -------------------------------------------------------------------------------- /1988/orig/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/README -------------------------------------------------------------------------------- /1988/orig/awkcc/arrstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/arrstack.c -------------------------------------------------------------------------------- /1988/orig/awkcc/awk.g.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/awk.g.y -------------------------------------------------------------------------------- /1988/orig/awkcc/awk.lx.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/awk.lx.l -------------------------------------------------------------------------------- /1988/orig/awkcc/awkcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/awkcc.h -------------------------------------------------------------------------------- /1988/orig/awkcc/awkcc.sh.basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/awkcc.sh.basic -------------------------------------------------------------------------------- /1988/orig/awkcc/comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/comp.c -------------------------------------------------------------------------------- /1988/orig/awkcc/emit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/emit.c -------------------------------------------------------------------------------- /1988/orig/awkcc/emitfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/emitfunc.c -------------------------------------------------------------------------------- /1988/orig/awkcc/emitppmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/emitppmm.c -------------------------------------------------------------------------------- /1988/orig/awkcc/emitstmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/emitstmt.c -------------------------------------------------------------------------------- /1988/orig/awkcc/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/fix.c -------------------------------------------------------------------------------- /1988/orig/awkcc/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/funcs.h -------------------------------------------------------------------------------- /1988/orig/awkcc/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/getopt.c -------------------------------------------------------------------------------- /1988/orig/awkcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/main.c -------------------------------------------------------------------------------- /1988/orig/awkcc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/makefile -------------------------------------------------------------------------------- /1988/orig/awkcc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/misc.c -------------------------------------------------------------------------------- /1988/orig/awkcc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/misc.h -------------------------------------------------------------------------------- /1988/orig/awkcc/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/node.c -------------------------------------------------------------------------------- /1988/orig/awkcc/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/parse.h -------------------------------------------------------------------------------- /1988/orig/awkcc/prefuncall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/prefuncall.c -------------------------------------------------------------------------------- /1988/orig/awkcc/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/print.c -------------------------------------------------------------------------------- /1988/orig/awkcc/printop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/printop.c -------------------------------------------------------------------------------- /1988/orig/awkcc/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/stack.c -------------------------------------------------------------------------------- /1988/orig/awkcc/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/structs.h -------------------------------------------------------------------------------- /1988/orig/awkcc/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/symtab.c -------------------------------------------------------------------------------- /1988/orig/awkcc/tempvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/tempvar.c -------------------------------------------------------------------------------- /1988/orig/awkcc/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/tokens.h -------------------------------------------------------------------------------- /1988/orig/awkcc/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/type.c -------------------------------------------------------------------------------- /1988/orig/awkcc/walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/walk.c -------------------------------------------------------------------------------- /1988/orig/awkcc/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/write.c -------------------------------------------------------------------------------- /1988/orig/awkcc/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/awkcc/y.tab.h -------------------------------------------------------------------------------- /1988/orig/lib/assignvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/assignvars.c -------------------------------------------------------------------------------- /1988/orig/lib/awk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/awk.h -------------------------------------------------------------------------------- /1988/orig/lib/awkerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/awkerr.c -------------------------------------------------------------------------------- /1988/orig/lib/awkmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/awkmod.c -------------------------------------------------------------------------------- /1988/orig/lib/awkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/awkparse.c -------------------------------------------------------------------------------- /1988/orig/lib/awkrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/awkrun.c -------------------------------------------------------------------------------- /1988/orig/lib/clear_htb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/clear_htb.c -------------------------------------------------------------------------------- /1988/orig/lib/clearctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/clearctest.c -------------------------------------------------------------------------------- /1988/orig/lib/copystr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/copystr.c -------------------------------------------------------------------------------- /1988/orig/lib/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/delete.c -------------------------------------------------------------------------------- /1988/orig/lib/docomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/docomp.c -------------------------------------------------------------------------------- /1988/orig/lib/docompN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/docompN.c -------------------------------------------------------------------------------- /1988/orig/lib/dollars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/dollars.h -------------------------------------------------------------------------------- /1988/orig/lib/ear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/ear.h -------------------------------------------------------------------------------- /1988/orig/lib/filedrop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/filedrop.c -------------------------------------------------------------------------------- /1988/orig/lib/fileget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/fileget.c -------------------------------------------------------------------------------- /1988/orig/lib/free_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/free_array.c -------------------------------------------------------------------------------- /1988/orig/lib/getd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/getd.c -------------------------------------------------------------------------------- /1988/orig/lib/getrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/getrec.c -------------------------------------------------------------------------------- /1988/orig/lib/gsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/gsub.c -------------------------------------------------------------------------------- /1988/orig/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/hash.h -------------------------------------------------------------------------------- /1988/orig/lib/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/header.h -------------------------------------------------------------------------------- /1988/orig/lib/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/index.c -------------------------------------------------------------------------------- /1988/orig/lib/insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/insert.c -------------------------------------------------------------------------------- /1988/orig/lib/isreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/isreg.c -------------------------------------------------------------------------------- /1988/orig/lib/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/lines.c -------------------------------------------------------------------------------- /1988/orig/lib/make_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/make_array.c -------------------------------------------------------------------------------- /1988/orig/lib/make_buckets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/make_buckets.c -------------------------------------------------------------------------------- /1988/orig/lib/make_elem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/make_elem.c -------------------------------------------------------------------------------- /1988/orig/lib/make_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/make_str.c -------------------------------------------------------------------------------- /1988/orig/lib/make_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/make_var.c -------------------------------------------------------------------------------- /1988/orig/lib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/makefile -------------------------------------------------------------------------------- /1988/orig/lib/member.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/member.c -------------------------------------------------------------------------------- /1988/orig/lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/misc.c -------------------------------------------------------------------------------- /1988/orig/lib/n_insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/n_insert.c -------------------------------------------------------------------------------- /1988/orig/lib/newb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/newb.c -------------------------------------------------------------------------------- /1988/orig/lib/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/number.c -------------------------------------------------------------------------------- /1988/orig/lib/opennext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/opennext.c -------------------------------------------------------------------------------- /1988/orig/lib/pipeget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/pipeget.c -------------------------------------------------------------------------------- /1988/orig/lib/printD0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/printD0.c -------------------------------------------------------------------------------- /1988/orig/lib/print_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/print_var.c -------------------------------------------------------------------------------- /1988/orig/lib/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/regexp.c -------------------------------------------------------------------------------- /1988/orig/lib/resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/resize.c -------------------------------------------------------------------------------- /1988/orig/lib/resplitrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/resplitrec.c -------------------------------------------------------------------------------- /1988/orig/lib/rgetrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/rgetrec.c -------------------------------------------------------------------------------- /1988/orig/lib/s_insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/s_insert.c -------------------------------------------------------------------------------- /1988/orig/lib/setctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/setctest.c -------------------------------------------------------------------------------- /1988/orig/lib/specassign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/specassign.h -------------------------------------------------------------------------------- /1988/orig/lib/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/split.c -------------------------------------------------------------------------------- /1988/orig/lib/split2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/split2.c -------------------------------------------------------------------------------- /1988/orig/lib/split3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/split3.c -------------------------------------------------------------------------------- /1988/orig/lib/splitrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/splitrec.c -------------------------------------------------------------------------------- /1988/orig/lib/sresize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/sresize.c -------------------------------------------------------------------------------- /1988/orig/lib/strsplitrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/strsplitrec.c -------------------------------------------------------------------------------- /1988/orig/lib/substr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/substr.c -------------------------------------------------------------------------------- /1988/orig/lib/xprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/xprintf.c -------------------------------------------------------------------------------- /1988/orig/lib/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/lib/y.tab.h -------------------------------------------------------------------------------- /1988/orig/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/orig/makefile -------------------------------------------------------------------------------- /1988/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/README -------------------------------------------------------------------------------- /1988/src/awkcc/arrstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/arrstack.c -------------------------------------------------------------------------------- /1988/src/awkcc/awk.g.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/awk.g.y -------------------------------------------------------------------------------- /1988/src/awkcc/awk.lx.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/awk.lx.l -------------------------------------------------------------------------------- /1988/src/awkcc/awkcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/awkcc.h -------------------------------------------------------------------------------- /1988/src/awkcc/awkcc.sh.basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/awkcc.sh.basic -------------------------------------------------------------------------------- /1988/src/awkcc/comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/comp.c -------------------------------------------------------------------------------- /1988/src/awkcc/emit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/emit.c -------------------------------------------------------------------------------- /1988/src/awkcc/emitfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/emitfunc.c -------------------------------------------------------------------------------- /1988/src/awkcc/emitppmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/emitppmm.c -------------------------------------------------------------------------------- /1988/src/awkcc/emitstmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/emitstmt.c -------------------------------------------------------------------------------- /1988/src/awkcc/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/fix.c -------------------------------------------------------------------------------- /1988/src/awkcc/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/funcs.h -------------------------------------------------------------------------------- /1988/src/awkcc/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/getopt.c -------------------------------------------------------------------------------- /1988/src/awkcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/main.c -------------------------------------------------------------------------------- /1988/src/awkcc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/makefile -------------------------------------------------------------------------------- /1988/src/awkcc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/misc.c -------------------------------------------------------------------------------- /1988/src/awkcc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/misc.h -------------------------------------------------------------------------------- /1988/src/awkcc/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/node.c -------------------------------------------------------------------------------- /1988/src/awkcc/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/parse.h -------------------------------------------------------------------------------- /1988/src/awkcc/prefuncall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/prefuncall.c -------------------------------------------------------------------------------- /1988/src/awkcc/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/print.c -------------------------------------------------------------------------------- /1988/src/awkcc/printop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/printop.c -------------------------------------------------------------------------------- /1988/src/awkcc/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/stack.c -------------------------------------------------------------------------------- /1988/src/awkcc/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/structs.h -------------------------------------------------------------------------------- /1988/src/awkcc/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/symtab.c -------------------------------------------------------------------------------- /1988/src/awkcc/tempvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/tempvar.c -------------------------------------------------------------------------------- /1988/src/awkcc/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/tokens.h -------------------------------------------------------------------------------- /1988/src/awkcc/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/type.c -------------------------------------------------------------------------------- /1988/src/awkcc/walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/walk.c -------------------------------------------------------------------------------- /1988/src/awkcc/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/write.c -------------------------------------------------------------------------------- /1988/src/awkcc/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/awkcc/y.tab.h -------------------------------------------------------------------------------- /1988/src/lib/assignvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/assignvars.c -------------------------------------------------------------------------------- /1988/src/lib/awk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/awk.h -------------------------------------------------------------------------------- /1988/src/lib/awkerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/awkerr.c -------------------------------------------------------------------------------- /1988/src/lib/awkmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/awkmod.c -------------------------------------------------------------------------------- /1988/src/lib/awkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/awkparse.c -------------------------------------------------------------------------------- /1988/src/lib/awkrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/awkrun.c -------------------------------------------------------------------------------- /1988/src/lib/clear_htb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/clear_htb.c -------------------------------------------------------------------------------- /1988/src/lib/clearctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/clearctest.c -------------------------------------------------------------------------------- /1988/src/lib/copystr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/copystr.c -------------------------------------------------------------------------------- /1988/src/lib/delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/delete.c -------------------------------------------------------------------------------- /1988/src/lib/docomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/docomp.c -------------------------------------------------------------------------------- /1988/src/lib/docompN.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/docompN.c -------------------------------------------------------------------------------- /1988/src/lib/dollars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/dollars.h -------------------------------------------------------------------------------- /1988/src/lib/ear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/ear.h -------------------------------------------------------------------------------- /1988/src/lib/filedrop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/filedrop.c -------------------------------------------------------------------------------- /1988/src/lib/fileget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/fileget.c -------------------------------------------------------------------------------- /1988/src/lib/free_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/free_array.c -------------------------------------------------------------------------------- /1988/src/lib/getd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/getd.c -------------------------------------------------------------------------------- /1988/src/lib/getrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/getrec.c -------------------------------------------------------------------------------- /1988/src/lib/gsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/gsub.c -------------------------------------------------------------------------------- /1988/src/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/hash.h -------------------------------------------------------------------------------- /1988/src/lib/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/header.h -------------------------------------------------------------------------------- /1988/src/lib/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/index.c -------------------------------------------------------------------------------- /1988/src/lib/insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/insert.c -------------------------------------------------------------------------------- /1988/src/lib/isreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/isreg.c -------------------------------------------------------------------------------- /1988/src/lib/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/lines.c -------------------------------------------------------------------------------- /1988/src/lib/make_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/make_array.c -------------------------------------------------------------------------------- /1988/src/lib/make_buckets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/make_buckets.c -------------------------------------------------------------------------------- /1988/src/lib/make_elem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/make_elem.c -------------------------------------------------------------------------------- /1988/src/lib/make_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/make_str.c -------------------------------------------------------------------------------- /1988/src/lib/make_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/make_var.c -------------------------------------------------------------------------------- /1988/src/lib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/makefile -------------------------------------------------------------------------------- /1988/src/lib/member.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/member.c -------------------------------------------------------------------------------- /1988/src/lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/misc.c -------------------------------------------------------------------------------- /1988/src/lib/n_insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/n_insert.c -------------------------------------------------------------------------------- /1988/src/lib/newb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/newb.c -------------------------------------------------------------------------------- /1988/src/lib/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/number.c -------------------------------------------------------------------------------- /1988/src/lib/opennext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/opennext.c -------------------------------------------------------------------------------- /1988/src/lib/pipeget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/pipeget.c -------------------------------------------------------------------------------- /1988/src/lib/printD0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/printD0.c -------------------------------------------------------------------------------- /1988/src/lib/print_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/print_var.c -------------------------------------------------------------------------------- /1988/src/lib/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/regexp.c -------------------------------------------------------------------------------- /1988/src/lib/resize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/resize.c -------------------------------------------------------------------------------- /1988/src/lib/resplitrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/resplitrec.c -------------------------------------------------------------------------------- /1988/src/lib/rgetrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/rgetrec.c -------------------------------------------------------------------------------- /1988/src/lib/s_insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/s_insert.c -------------------------------------------------------------------------------- /1988/src/lib/setctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/setctest.c -------------------------------------------------------------------------------- /1988/src/lib/specassign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/specassign.h -------------------------------------------------------------------------------- /1988/src/lib/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/split.c -------------------------------------------------------------------------------- /1988/src/lib/split2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/split2.c -------------------------------------------------------------------------------- /1988/src/lib/split3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/split3.c -------------------------------------------------------------------------------- /1988/src/lib/splitrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/splitrec.c -------------------------------------------------------------------------------- /1988/src/lib/sresize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/sresize.c -------------------------------------------------------------------------------- /1988/src/lib/strsplitrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/strsplitrec.c -------------------------------------------------------------------------------- /1988/src/lib/substr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/substr.c -------------------------------------------------------------------------------- /1988/src/lib/xprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/xprintf.c -------------------------------------------------------------------------------- /1988/src/lib/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/lib/y.tab.h -------------------------------------------------------------------------------- /1988/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/1988/src/makefile -------------------------------------------------------------------------------- /2011/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/Makefile -------------------------------------------------------------------------------- /2011/README.exptools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/README.exptools -------------------------------------------------------------------------------- /2011/awkcc.npd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc.npd -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/arrstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/arrstack.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/awk.g.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/awk.g.y -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/awk.lx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/awk.lx.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/awk.lx.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/awk.lx.l -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/awkcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/awkcc.h -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/awkcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/awkcc.sh -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/awkcc.sh.basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/awkcc.sh.basic -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/comp.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/emit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/emit.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/emitfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/emitfunc.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/emitppmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/emitppmm.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/emitstmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/emitstmt.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/fix.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/funcs.h -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/funcs.h.stdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/funcs.h.stdarg -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/funcs.h.varargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/funcs.h.varargs -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/getopt.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/main.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/makefile -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/misc.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/misc.c.stdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/misc.c.stdarg -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/misc.c.varargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/misc.c.varargs -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/misc.h -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/node.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/parse.h -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/prefuncall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/prefuncall.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/print.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/printop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/printop.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/stack.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/structs.h -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/symtab.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/tempvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/tempvar.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/tokens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/tokens.h -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/type.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/walk.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/write.c -------------------------------------------------------------------------------- /2011/awkcc20/awkcc/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/awkcc/y.tab.h -------------------------------------------------------------------------------- /2011/awkcc20/idocs/awkcc.fts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/idocs/awkcc.fts -------------------------------------------------------------------------------- /2011/awkcc20/idocs/awkcc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/idocs/awkcc.rs -------------------------------------------------------------------------------- /2011/awkcc20/idocs/awkcc.sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/idocs/awkcc.sts -------------------------------------------------------------------------------- /2011/awkcc20/idocs/note.sol_2.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/idocs/note.sol_2.5 -------------------------------------------------------------------------------- /2011/awkcc20/lib/D0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/D0.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/awk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/awk.h -------------------------------------------------------------------------------- /2011/awkcc20/lib/awkerr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/awkerr.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/awkerr.c.stdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/awkerr.c.stdarg -------------------------------------------------------------------------------- /2011/awkcc20/lib/awkerr.c.varargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/awkerr.c.varargs -------------------------------------------------------------------------------- /2011/awkcc20/lib/awkparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/awkparse.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/awkrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/awkrun.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/b.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/comparisons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/comparisons.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/ctest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/ctest.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/dollars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/dollars.h -------------------------------------------------------------------------------- /2011/awkcc20/lib/ear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/ear.h -------------------------------------------------------------------------------- /2011/awkcc20/lib/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/files.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/getd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/getd.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/getrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/getrec.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/gsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/gsub.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/hash.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/hash.h -------------------------------------------------------------------------------- /2011/awkcc20/lib/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/header.h -------------------------------------------------------------------------------- /2011/awkcc20/lib/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/lines.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/make_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/make_array.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/make_elem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/make_elem.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/make_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/make_str.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/make_var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/make_var.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/makefile -------------------------------------------------------------------------------- /2011/awkcc20/lib/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/misc.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/misc.c.stdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/misc.c.stdarg -------------------------------------------------------------------------------- /2011/awkcc20/lib/misc.c.varargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/misc.c.varargs -------------------------------------------------------------------------------- /2011/awkcc20/lib/opennext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/opennext.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/resplitrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/resplitrec.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/specassign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/specassign.h -------------------------------------------------------------------------------- /2011/awkcc20/lib/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/split.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/split2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/split2.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/split3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/split3.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/splitrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/splitrec.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/strsplitrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/strsplitrec.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/xprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/xprintf.c -------------------------------------------------------------------------------- /2011/awkcc20/lib/xprintf.c.stdarg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/xprintf.c.stdarg -------------------------------------------------------------------------------- /2011/awkcc20/lib/xprintf.c.varargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/xprintf.c.varargs -------------------------------------------------------------------------------- /2011/awkcc20/lib/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/lib/y.tab.h -------------------------------------------------------------------------------- /2011/awkcc20/man/awkcc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/man/awkcc.1 -------------------------------------------------------------------------------- /2011/awkcc20/man/awkcc.cover: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/man/awkcc.cover -------------------------------------------------------------------------------- /2011/awkcc20/man/awkcc.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/man/awkcc.mm -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i386/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/i386/copyright -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i386/pkginfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/i386/pkginfo -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i386/postremove: -------------------------------------------------------------------------------- 1 | rm -rf /opt/awkcc 2 | -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i386/prototype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/i386/prototype -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i486/README.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/i486/README.depend -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i486/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/i486/copyright -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i486/depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/i486/depend -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i486/pkginfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/i486/pkginfo -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i486/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/i486/postinstall -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i486/prototype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/i486/prototype -------------------------------------------------------------------------------- /2011/awkcc20/pkg/i486/request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/i486/request -------------------------------------------------------------------------------- /2011/awkcc20/pkg/sparc/README.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/sparc/README.depend -------------------------------------------------------------------------------- /2011/awkcc20/pkg/sparc/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/sparc/copyright -------------------------------------------------------------------------------- /2011/awkcc20/pkg/sparc/depend: -------------------------------------------------------------------------------- 1 | 2 | P SPROcc SPARCompiler C (Version 2.0.1 or Greater) 3 | 4 | -------------------------------------------------------------------------------- /2011/awkcc20/pkg/sparc/pkginfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/sparc/pkginfo -------------------------------------------------------------------------------- /2011/awkcc20/pkg/sparc/prototype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/sparc/prototype -------------------------------------------------------------------------------- /2011/awkcc20/pkg/sparc/request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/sparc/request -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts/awkcc/README.oam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts/awkcc/README.oam -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts/awkcc/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts/awkcc/copyright -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts/awkcc/pkginfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts/awkcc/pkginfo -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts/awkcc/protopre4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts/awkcc/protopre4 -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts/awkcc/protosvr4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts/awkcc/protosvr4 -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts/awkcc/prototype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts/awkcc/prototype -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts/awkccsrc/README.oam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts/awkccsrc/README.oam -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts/awkccsrc/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts/awkccsrc/copyright -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts/awkccsrc/pkginfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts/awkccsrc/pkginfo -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts/awkccsrc/prototype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts/awkccsrc/prototype -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts4/README.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts4/README.depend -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts4/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts4/copyright -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts4/pkginfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts4/pkginfo -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts4/prototype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts4/prototype -------------------------------------------------------------------------------- /2011/awkcc20/pkg/uts4/request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/pkg/uts4/request -------------------------------------------------------------------------------- /2011/awkcc20/src/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/src/INSTALL -------------------------------------------------------------------------------- /2011/awkcc20/src/README.awkcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/src/README.awkcc -------------------------------------------------------------------------------- /2011/awkcc20/src/awkcc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/src/awkcc.mk -------------------------------------------------------------------------------- /2011/awkcc20/src/awkcc.mk.uts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/src/awkcc.mk.uts -------------------------------------------------------------------------------- /2011/awkcc20/src/makefile.i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/src/makefile.i386 -------------------------------------------------------------------------------- /2011/awkcc20/src/makefile.ilinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/src/makefile.ilinux -------------------------------------------------------------------------------- /2011/awkcc20/src/makefile.sun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/src/makefile.sun -------------------------------------------------------------------------------- /2011/awkcc20/src/makefile.uts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/src/makefile.uts -------------------------------------------------------------------------------- /2011/awkcc20/src/makefile.uts4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/src/makefile.uts4 -------------------------------------------------------------------------------- /2011/awkcc20/src/mfilechg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/src/mfilechg -------------------------------------------------------------------------------- /2011/awkcc20/test/Compare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/Compare -------------------------------------------------------------------------------- /2011/awkcc20/test/CompleteWith.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/CompleteWith.e -------------------------------------------------------------------------------- /2011/awkcc20/test/CompleteWith.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/CompleteWith.error -------------------------------------------------------------------------------- /2011/awkcc20/test/awker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/awker.c -------------------------------------------------------------------------------- /2011/awkcc20/test/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/cc -------------------------------------------------------------------------------- /2011/awkcc20/test/eventemp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/eventemp -------------------------------------------------------------------------------- /2011/awkcc20/test/foo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/foo -------------------------------------------------------------------------------- /2011/awkcc20/test/gawk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/gawk -------------------------------------------------------------------------------- /2011/awkcc20/test/glop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/glop -------------------------------------------------------------------------------- /2011/awkcc20/test/junk1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/junk1 -------------------------------------------------------------------------------- /2011/awkcc20/test/junk2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/junk2 -------------------------------------------------------------------------------- /2011/awkcc20/test/nawk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/nawk -------------------------------------------------------------------------------- /2011/awkcc20/test/oddtemp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/oddtemp -------------------------------------------------------------------------------- /2011/awkcc20/test/p.1: -------------------------------------------------------------------------------- 1 | { print } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.10: -------------------------------------------------------------------------------- 1 | $1 == $4 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.11: -------------------------------------------------------------------------------- 1 | /Asia/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.12: -------------------------------------------------------------------------------- 1 | $4 ~ /Asia/ { print $1 } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.13: -------------------------------------------------------------------------------- 1 | $4 !~ /Asia/ {print $1 } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.14: -------------------------------------------------------------------------------- 1 | /\$/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.15: -------------------------------------------------------------------------------- 1 | /\\/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.16: -------------------------------------------------------------------------------- 1 | /^.$/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.17: -------------------------------------------------------------------------------- 1 | $2 !~ /^[0-9]+$/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.18: -------------------------------------------------------------------------------- 1 | /(apple|cherry) (pie|tart)/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.19 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.2: -------------------------------------------------------------------------------- 1 | { print $1, $3 } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.20: -------------------------------------------------------------------------------- 1 | $4 == "Asia" && $3 > 500 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.21 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.22: -------------------------------------------------------------------------------- 1 | $4 ~ /^(Asia|Africa)$/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.23: -------------------------------------------------------------------------------- 1 | /Canada/, /Brazil/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.24 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.25: -------------------------------------------------------------------------------- 1 | { printf "%10s %6.1f\n", $1, 1000 * $3 / $2 } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.26 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.26a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.26a -------------------------------------------------------------------------------- /2011/awkcc20/test/p.27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.27 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.28: -------------------------------------------------------------------------------- 1 | { print NR ":" $0 } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.29: -------------------------------------------------------------------------------- 1 | { gsub(/USA/, "United States"); print } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.3: -------------------------------------------------------------------------------- 1 | { printf "%10s %6d\n", $1, $3 } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.30: -------------------------------------------------------------------------------- 1 | { print length, $0 } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.31 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.32: -------------------------------------------------------------------------------- 1 | { $1 = substr($1, 1, 3); print } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.33 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.34: -------------------------------------------------------------------------------- 1 | { $2 /= 1000; print } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.35 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.36: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.36 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.37: -------------------------------------------------------------------------------- 1 | $1 "" == $2 "" 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.38: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.38 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.39: -------------------------------------------------------------------------------- 1 | { i = 1 2 | while (i <= NF) { 3 | print $i 4 | i++ 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.4: -------------------------------------------------------------------------------- 1 | { print NR, $0 } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.40: -------------------------------------------------------------------------------- 1 | { for (i = 1; i <= NF; i++) 2 | print $i 3 | } 4 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.41 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.42: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.42 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.43: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.43 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.44 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.45: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.45 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.46: -------------------------------------------------------------------------------- 1 | { print $1 $2 } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.47: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.47 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.48: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.48 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.48a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.48a -------------------------------------------------------------------------------- /2011/awkcc20/test/p.48b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.48b -------------------------------------------------------------------------------- /2011/awkcc20/test/p.49: -------------------------------------------------------------------------------- 1 | $1 == "include" { system("cat " $2) } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.5 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.50 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.51 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.52: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.52 -------------------------------------------------------------------------------- /2011/awkcc20/test/p.5a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/p.5a -------------------------------------------------------------------------------- /2011/awkcc20/test/p.6: -------------------------------------------------------------------------------- 1 | END { print NR } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.7: -------------------------------------------------------------------------------- 1 | $3 > 100 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.8: -------------------------------------------------------------------------------- 1 | $4 == "Asia" { print $1 } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/p.9: -------------------------------------------------------------------------------- 1 | $1 >= "S" 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest1 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest10 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest11 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest12 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest2 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest3 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest4 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest5 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest6 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest6b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest6b -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest6c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest6c -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest7 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest7b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest7b -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest7c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest7c -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest8 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.amptest9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.amptest9 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.comint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.comint -------------------------------------------------------------------------------- /2011/awkcc20/test/q.comint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.comint.c -------------------------------------------------------------------------------- /2011/awkcc20/test/q.comint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.comint.cc -------------------------------------------------------------------------------- /2011/awkcc20/test/q.comint2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.comint2 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.dollartest1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.dollartest1 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.dollartest2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.dollartest2 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.dollartest3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.dollartest3 -------------------------------------------------------------------------------- /2011/awkcc20/test/q.foobar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.foobar -------------------------------------------------------------------------------- /2011/awkcc20/test/q.hfl8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/q.hfl8 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.0: -------------------------------------------------------------------------------- 1 | {i = i+1; print i, NR} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.00: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | "" getline 3 | } 4 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.1: -------------------------------------------------------------------------------- 1 | BEGIN {FS=":"} 2 | {print $1, $2, $3} 3 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.1.x: -------------------------------------------------------------------------------- 1 | {i="count" $1 $2; print i , $0} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.2: -------------------------------------------------------------------------------- 1 | BEGIN {OFS="==="} 2 | {print $1, $2, $3} 3 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.2.x: -------------------------------------------------------------------------------- 1 | {i=2; j=$3; $1=i;print i,j,$1} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.3.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.3.x -------------------------------------------------------------------------------- /2011/awkcc20/test/t.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.4 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.4.x: -------------------------------------------------------------------------------- 1 | {i=$(1); print i} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.5.x: -------------------------------------------------------------------------------- 1 | {$(1) = "xxx"; print $1,$0} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.6 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.6.x: -------------------------------------------------------------------------------- 1 | {print NF,$0} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.6a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.6a -------------------------------------------------------------------------------- /2011/awkcc20/test/t.6b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.6b -------------------------------------------------------------------------------- /2011/awkcc20/test/t.777: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.777 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.779: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.779 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.780: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | a[1,2,3] 3 | } 4 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.8.x: -------------------------------------------------------------------------------- 1 | {$2=$1; print} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.909: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.909 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.909.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.909.cc -------------------------------------------------------------------------------- /2011/awkcc20/test/t.a1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.a1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.a2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.a2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.aeiou: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.aeiou -------------------------------------------------------------------------------- /2011/awkcc20/test/t.aeiouy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.aeiouy -------------------------------------------------------------------------------- /2011/awkcc20/test/t.argc: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | ARGC-=1 3 | } 4 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.argc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.argc2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.argv: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | print a, b 3 | } 4 | 5 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.arith: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.arith -------------------------------------------------------------------------------- /2011/awkcc20/test/t.arith2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.arith2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.array -------------------------------------------------------------------------------- /2011/awkcc20/test/t.array1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.array1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.array2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.array2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.arrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.arrc -------------------------------------------------------------------------------- /2011/awkcc20/test/t.asdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.asdf -------------------------------------------------------------------------------- /2011/awkcc20/test/t.asdf333: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.asdf333 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.asdfasdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.asdfasdf -------------------------------------------------------------------------------- /2011/awkcc20/test/t.asdfasdf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.asdfasdf2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.asdfasdf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.asdfasdf3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.asgn: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | a=1.2 3 | print a 4 | } 5 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.ass: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | d="hello" 3 | a=b=c=3 4 | print a b c (d=3), e=a+2 5 | } 6 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.assert -------------------------------------------------------------------------------- /2011/awkcc20/test/t.avg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.avg -------------------------------------------------------------------------------- /2011/awkcc20/test/t.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.awk -------------------------------------------------------------------------------- /2011/awkcc20/test/t.b.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.b.x -------------------------------------------------------------------------------- /2011/awkcc20/test/t.bbbad1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.bbbad1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.blh999: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.blh999 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.break: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.break -------------------------------------------------------------------------------- /2011/awkcc20/test/t.break1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.break1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.break2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.break2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.break3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.break3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.bthassign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.bthassign -------------------------------------------------------------------------------- /2011/awkcc20/test/t.bug1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.bug1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.builtins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.builtins -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cat -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cat1: -------------------------------------------------------------------------------- 1 | {print x $0} # should precede by zero 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cat2: -------------------------------------------------------------------------------- 1 | {$1 = $1 "*"; print} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cindex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cindex -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cmdline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cmdline -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cmdline99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cmdline99 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cmdline_proc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cmdline_proc -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cmp: -------------------------------------------------------------------------------- 1 | $2 > $1 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.coerce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.coerce -------------------------------------------------------------------------------- /2011/awkcc20/test/t.comment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.comment -------------------------------------------------------------------------------- /2011/awkcc20/test/t.comment1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.comment1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.concat: -------------------------------------------------------------------------------- 1 | { x = $1; print x (++i) } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cond -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cond2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cond2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cont -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cont3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cont3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.contin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.contin -------------------------------------------------------------------------------- /2011/awkcc20/test/t.count: -------------------------------------------------------------------------------- 1 | END { print NR } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.countend: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | print match("xabc", "abc$"), RLENGTH 3 | } 4 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cum -------------------------------------------------------------------------------- /2011/awkcc20/test/t.cut1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.cut1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.d.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.d.x -------------------------------------------------------------------------------- /2011/awkcc20/test/t.delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.delete -------------------------------------------------------------------------------- /2011/awkcc20/test/t.delete3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.delete3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.delete4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.delete4 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.delinloop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.delinloop -------------------------------------------------------------------------------- /2011/awkcc20/test/t.dobreak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.dobreak -------------------------------------------------------------------------------- /2011/awkcc20/test/t.dobreak2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.dobreak2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.dobreak3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.dobreak3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.dolawk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.dolawk -------------------------------------------------------------------------------- /2011/awkcc20/test/t.doll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.doll -------------------------------------------------------------------------------- /2011/awkcc20/test/t.doll2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.doll2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.doll3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.doll3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.doll4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.doll4 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.doublea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.doublea -------------------------------------------------------------------------------- /2011/awkcc20/test/t.doubleb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.doubleb -------------------------------------------------------------------------------- /2011/awkcc20/test/t.doublec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.doublec -------------------------------------------------------------------------------- /2011/awkcc20/test/t.doublesp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.doublesp -------------------------------------------------------------------------------- /2011/awkcc20/test/t.e: -------------------------------------------------------------------------------- 1 | $1 < 10 || $2 ~ /bwk/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.else -------------------------------------------------------------------------------- /2011/awkcc20/test/t.emitppmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.emitppmm -------------------------------------------------------------------------------- /2011/awkcc20/test/t.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.empty -------------------------------------------------------------------------------- /2011/awkcc20/test/t.endprint: -------------------------------------------------------------------------------- 1 | END { print $0, $1, NF} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.exit: -------------------------------------------------------------------------------- 1 | { print } 2 | $1 < 5000 { exit NR } 3 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.exit1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.exit1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.exit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.exit2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.f: -------------------------------------------------------------------------------- 1 | {print $2, $1} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.f.x: -------------------------------------------------------------------------------- 1 | $1>0 {print $1, sqrt($1)} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.f0: -------------------------------------------------------------------------------- 1 | $1 ~ /x/ {print $0} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.f1: -------------------------------------------------------------------------------- 1 | {$1 = 1; print} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.f2: -------------------------------------------------------------------------------- 1 | {$1 = 1; print $0} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.f3: -------------------------------------------------------------------------------- 1 | {$1 = NR; print} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.f4: -------------------------------------------------------------------------------- 1 | {$1 = NR; print $0} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.fix_this: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.fix_this -------------------------------------------------------------------------------- /2011/awkcc20/test/t.foo: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | a=3.3 3 | a++ 4 | print a 5 | } 6 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.foobar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.foobar -------------------------------------------------------------------------------- /2011/awkcc20/test/t.foobar3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.foobar3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.foobar4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.foobar4 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.foobar99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.foobar99 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.for: -------------------------------------------------------------------------------- 1 | { for (i=1; i<=NF; i++) 2 | print i, $i 3 | } 4 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.for1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.for1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.for2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.for2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.format4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.format4 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.freea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.freea -------------------------------------------------------------------------------- /2011/awkcc20/test/t.fret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.fret -------------------------------------------------------------------------------- /2011/awkcc20/test/t.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.fs -------------------------------------------------------------------------------- /2011/awkcc20/test/t.fs2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.fs2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.fun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.fun -------------------------------------------------------------------------------- /2011/awkcc20/test/t.fun2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.fun2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.fun3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.fun3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.fun4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.fun4 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.fun5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.fun5 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.getline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.getline -------------------------------------------------------------------------------- /2011/awkcc20/test/t.gets: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | printf(":%s:\n", getline) 3 | } 4 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.gsub: -------------------------------------------------------------------------------- 1 | {gsub(/[aeiou]/,"foo"); print} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.gsub1: -------------------------------------------------------------------------------- 1 | {gsub(/$/,"x"); print} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.gsub3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.gsub3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.hello: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | print "hello" 3 | } 4 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.hfl100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.hfl100 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.hfl99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.hfl99 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.hflconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.hflconv -------------------------------------------------------------------------------- /2011/awkcc20/test/t.i.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.i.x -------------------------------------------------------------------------------- /2011/awkcc20/test/t.if: -------------------------------------------------------------------------------- 1 | {if($1 || $2) print} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.if1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.if1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.if2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.if2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.if3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.if3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.in -------------------------------------------------------------------------------- /2011/awkcc20/test/t.in1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.in1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.in2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.in2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.in3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.in3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.incr: -------------------------------------------------------------------------------- 1 | { ++i; --j; k++; l-- } 2 | END { print NR, i, j, k, l } 3 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.incr2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.incr2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.incr3: -------------------------------------------------------------------------------- 1 | { s = 0 2 | for (i=1; i <= NF; s += $(i++)) 3 | ; 4 | print s 5 | } 6 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.index -------------------------------------------------------------------------------- /2011/awkcc20/test/t.inter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.inter -------------------------------------------------------------------------------- /2011/awkcc20/test/t.intest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.intest -------------------------------------------------------------------------------- /2011/awkcc20/test/t.intest2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.intest2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.j.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.j.x -------------------------------------------------------------------------------- /2011/awkcc20/test/t.jcrtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.jcrtest -------------------------------------------------------------------------------- /2011/awkcc20/test/t.johnbug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.johnbug -------------------------------------------------------------------------------- /2011/awkcc20/test/t.lbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.lbs -------------------------------------------------------------------------------- /2011/awkcc20/test/t.lessthan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.lessthan -------------------------------------------------------------------------------- /2011/awkcc20/test/t.longstr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.longstr -------------------------------------------------------------------------------- /2011/awkcc20/test/t.makef: -------------------------------------------------------------------------------- 1 | {$3 = 2*$1; print $1, $2, $3} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.match: -------------------------------------------------------------------------------- 1 | $2 ~ /ava|bwk/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.max: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.max -------------------------------------------------------------------------------- /2011/awkcc20/test/t.min: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.min -------------------------------------------------------------------------------- /2011/awkcc20/test/t.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.mod -------------------------------------------------------------------------------- /2011/awkcc20/test/t.monotone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.monotone -------------------------------------------------------------------------------- /2011/awkcc20/test/t.nameval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.nameval -------------------------------------------------------------------------------- /2011/awkcc20/test/t.newbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.newbg -------------------------------------------------------------------------------- /2011/awkcc20/test/t.newcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.newcat -------------------------------------------------------------------------------- /2011/awkcc20/test/t.newestfromda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.newestfromda -------------------------------------------------------------------------------- /2011/awkcc20/test/t.newjlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.newjlb -------------------------------------------------------------------------------- /2011/awkcc20/test/t.next: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.next -------------------------------------------------------------------------------- /2011/awkcc20/test/t.next3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.next3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.nf: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | while (getline > 0) 3 | ; 4 | print NF 5 | } 6 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.nf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.nf3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.nonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.nonl -------------------------------------------------------------------------------- /2011/awkcc20/test/t.not: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.not -------------------------------------------------------------------------------- /2011/awkcc20/test/t.nr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.nr -------------------------------------------------------------------------------- /2011/awkcc20/test/t.null: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.null -------------------------------------------------------------------------------- /2011/awkcc20/test/t.null0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.null0 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.numbers -------------------------------------------------------------------------------- /2011/awkcc20/test/t.oddarr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.oddarr -------------------------------------------------------------------------------- /2011/awkcc20/test/t.oddball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.oddball -------------------------------------------------------------------------------- /2011/awkcc20/test/t.oddball1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.oddball1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.ofmt: -------------------------------------------------------------------------------- 1 | BEGIN {OFMT="%.5g"} 2 | {print $1+0} 3 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.ofmt3456: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.ofmt3456 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.ofmt3457: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.ofmt3457 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.ofs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.ofs -------------------------------------------------------------------------------- /2011/awkcc20/test/t.ors: -------------------------------------------------------------------------------- 1 | BEGIN {ORS="abc"} 2 | {print $1, $2, $3} 3 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.ost100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.ost100 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.ost99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.ost99 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.pass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.pass -------------------------------------------------------------------------------- /2011/awkcc20/test/t.pass2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.pass2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.pass3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.pass3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.pat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.pat -------------------------------------------------------------------------------- /2011/awkcc20/test/t.pipe: -------------------------------------------------------------------------------- 1 | BEGIN {print "read /usr/bwk/awk/t.pipe" | "cat"} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.pow2: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | x=3 3 | a[x++]^=x 4 | print x 5 | } 6 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.pp: -------------------------------------------------------------------------------- 1 | /a/,/b/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.pp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.pp1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.pp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.pp2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.ppdoll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.ppdoll -------------------------------------------------------------------------------- /2011/awkcc20/test/t.prepost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.prepost -------------------------------------------------------------------------------- /2011/awkcc20/test/t.printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.printf -------------------------------------------------------------------------------- /2011/awkcc20/test/t.printf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.printf3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.quest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.quest -------------------------------------------------------------------------------- /2011/awkcc20/test/t.quest2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.quest2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.quest3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.quest3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.quote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.quote -------------------------------------------------------------------------------- /2011/awkcc20/test/t.randk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.randk -------------------------------------------------------------------------------- /2011/awkcc20/test/t.re1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.re1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.re2: -------------------------------------------------------------------------------- 1 | /[a-z]()[0-9]/ 2 | !/^$/ 3 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.re7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.re7 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.reFS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.reFS -------------------------------------------------------------------------------- /2011/awkcc20/test/t.rec: -------------------------------------------------------------------------------- 1 | { print sqrt($1) } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.redir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.redir -------------------------------------------------------------------------------- /2011/awkcc20/test/t.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.reg -------------------------------------------------------------------------------- /2011/awkcc20/test/t.reg1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.reg1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.rete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.rete -------------------------------------------------------------------------------- /2011/awkcc20/test/t.rjj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.rjj -------------------------------------------------------------------------------- /2011/awkcc20/test/t.rjj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.rjj2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.roff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.roff -------------------------------------------------------------------------------- /2011/awkcc20/test/t.sad1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.sad1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.sep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.sep -------------------------------------------------------------------------------- /2011/awkcc20/test/t.seqno: -------------------------------------------------------------------------------- 1 | {print NR, $0} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.set0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.set0 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.set0a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.set0a -------------------------------------------------------------------------------- /2011/awkcc20/test/t.set0b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.set0b -------------------------------------------------------------------------------- /2011/awkcc20/test/t.set1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.set1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.set2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.set2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.set3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.set3 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.smallnum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.smallnum -------------------------------------------------------------------------------- /2011/awkcc20/test/t.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.sp -------------------------------------------------------------------------------- /2011/awkcc20/test/t.split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.split -------------------------------------------------------------------------------- /2011/awkcc20/test/t.split2: -------------------------------------------------------------------------------- 1 | { split ($0, x); print x[2], x[1] } 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.split9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.split9 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.split9a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.split9a -------------------------------------------------------------------------------- /2011/awkcc20/test/t.splitfoo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.splitfoo -------------------------------------------------------------------------------- /2011/awkcc20/test/t.stately: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.stately -------------------------------------------------------------------------------- /2011/awkcc20/test/t.stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.stderr -------------------------------------------------------------------------------- /2011/awkcc20/test/t.strcmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.strcmp -------------------------------------------------------------------------------- /2011/awkcc20/test/t.strcmp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.strcmp1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.sub -------------------------------------------------------------------------------- /2011/awkcc20/test/t.sub1: -------------------------------------------------------------------------------- 1 | {sub(/.$/,"x"); print} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.sub2: -------------------------------------------------------------------------------- 1 | {sub(/$/,"&"); print} 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.subsephfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.subsephfl -------------------------------------------------------------------------------- /2011/awkcc20/test/t.substr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.substr -------------------------------------------------------------------------------- /2011/awkcc20/test/t.substr1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.substr1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.tb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.tb -------------------------------------------------------------------------------- /2011/awkcc20/test/t.tb2: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | a="1" 3 | a++ 4 | print a 5 | } 6 | 7 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.testfreeftm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.testfreeftm -------------------------------------------------------------------------------- /2011/awkcc20/test/t.time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.time -------------------------------------------------------------------------------- /2011/awkcc20/test/t.toupper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.toupper -------------------------------------------------------------------------------- /2011/awkcc20/test/t.toupper2: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | x=toupper("abc") 3 | print x 4 | } 5 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.vf -------------------------------------------------------------------------------- /2011/awkcc20/test/t.vf1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.vf1 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.vf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.vf2 -------------------------------------------------------------------------------- /2011/awkcc20/test/t.vf3: -------------------------------------------------------------------------------- 1 | BEGIN { i=1; j=2 } 2 | {$i = $j; print} 3 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.w: -------------------------------------------------------------------------------- 1 | BEGIN { 2 | x="3" 3 | while (x+0<2) print "foobar" 4 | } 5 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.wmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.wmb -------------------------------------------------------------------------------- /2011/awkcc20/test/t.wolit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.wolit -------------------------------------------------------------------------------- /2011/awkcc20/test/t.x: -------------------------------------------------------------------------------- 1 | /x/ 2 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t.xPP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t.xPP -------------------------------------------------------------------------------- /2011/awkcc20/test/t.yly: -------------------------------------------------------------------------------- 1 | NR > 3 { 2 | print "hello" >> c 3 | } 4 | -------------------------------------------------------------------------------- /2011/awkcc20/test/t1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/t1 -------------------------------------------------------------------------------- /2011/awkcc20/test/test.countries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/test.countries -------------------------------------------------------------------------------- /2011/awkcc20/test/test.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/test.data -------------------------------------------------------------------------------- /2011/awkcc20/test/test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/test.out -------------------------------------------------------------------------------- /2011/awkcc20/test/testall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/testall -------------------------------------------------------------------------------- /2011/awkcc20/test/tmpfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkcc20/test/tmpfile -------------------------------------------------------------------------------- /2011/awkccsrc.npd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkccsrc.npd -------------------------------------------------------------------------------- /2011/awkccsrc.nsb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/awkccsrc.nsb -------------------------------------------------------------------------------- /2011/misc-arch/cygwin/lib/awkcc/awkcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc-arch/cygwin/lib/awkcc/awkcc.sh -------------------------------------------------------------------------------- /2011/misc-arch/darwin/lib/awkcc/awkcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc-arch/darwin/lib/awkcc/awkcc.sh -------------------------------------------------------------------------------- /2011/misc-arch/hppa/lib/awkcc/awkcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc-arch/hppa/lib/awkcc/awkcc.sh -------------------------------------------------------------------------------- /2011/misc-arch/idarwin/lib/awkcc/awkcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc-arch/idarwin/lib/awkcc/awkcc.sh -------------------------------------------------------------------------------- /2011/misc-arch/ilinux/lib/awkcc/awkcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc-arch/ilinux/lib/awkcc/awkcc.sh -------------------------------------------------------------------------------- /2011/misc-arch/isolaris/lib/awkcc/awkcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc-arch/isolaris/lib/awkcc/awkcc.sh -------------------------------------------------------------------------------- /2011/misc-arch/sgi/lib/awkcc/awkcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc-arch/sgi/lib/awkcc/awkcc.sh -------------------------------------------------------------------------------- /2011/misc-arch/solaris/lib/awkcc/awkcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc-arch/solaris/lib/awkcc/awkcc.sh -------------------------------------------------------------------------------- /2011/misc-arch/ssolaris/lib/awkcc/awkcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc-arch/ssolaris/lib/awkcc/awkcc.sh -------------------------------------------------------------------------------- /2011/misc/bin/awkcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc/bin/awkcc -------------------------------------------------------------------------------- /2011/misc/lib/toolnews/awkcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc/lib/toolnews/awkcc -------------------------------------------------------------------------------- /2011/misc/man/man1/awkcc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/2011/misc/man/man1/awkcc.1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nokia/awkcc/HEAD/README.md --------------------------------------------------------------------------------