├── .editorconfig ├── .gitattributes ├── .gitignore ├── README.md ├── croff ├── bothrc ├── hytab.c ├── hytab.s ├── n1.c ├── n10.c ├── n2.c ├── n3.c ├── n4.c ├── n5.c ├── n6.c ├── n7.c ├── n8.c ├── n9.c ├── ni.c ├── nii.c ├── nrc ├── ntab.c ├── pti.s ├── sufrc ├── suftab.s ├── t.h ├── t.s ├── tacct.c ├── tdef.h ├── term │ ├── code.300 │ ├── tab300-12.c │ ├── tab300.c │ ├── tab300s-12.c │ ├── tab300s.c │ ├── tab37.c │ ├── tab450-12-8.c │ ├── tab450-12.c │ ├── tab450.c │ ├── tabtn300.c │ └── termrc └── tw.h ├── neqn ├── ne.g ├── ne.h ├── ne0.c ├── ne1.c ├── ne2.c ├── ne3.c ├── ne4.c ├── ne5.c ├── ne6.c ├── nelex.c └── neqnrc ├── roff ├── roff1.s ├── roff2.s ├── roff3.s ├── roff4.s ├── roff5.s ├── roff7.s └── roff8.s └── tbl ├── t..c ├── t0.c ├── t1.c ├── t2.c ├── t3.c ├── t4.c ├── t5.c ├── t6.c ├── t7.c ├── t8.c ├── t9.c ├── tb.c ├── tc.c ├── te.c ├── tf.c ├── tg.c ├── ti.c ├── tm.c ├── ts.c ├── tt.c ├── tu.c └── tv.c /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/README.md -------------------------------------------------------------------------------- /croff/bothrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/bothrc -------------------------------------------------------------------------------- /croff/hytab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/hytab.c -------------------------------------------------------------------------------- /croff/hytab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/hytab.s -------------------------------------------------------------------------------- /croff/n1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/n1.c -------------------------------------------------------------------------------- /croff/n10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/n10.c -------------------------------------------------------------------------------- /croff/n2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/n2.c -------------------------------------------------------------------------------- /croff/n3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/n3.c -------------------------------------------------------------------------------- /croff/n4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/n4.c -------------------------------------------------------------------------------- /croff/n5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/n5.c -------------------------------------------------------------------------------- /croff/n6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/n6.c -------------------------------------------------------------------------------- /croff/n7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/n7.c -------------------------------------------------------------------------------- /croff/n8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/n8.c -------------------------------------------------------------------------------- /croff/n9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/n9.c -------------------------------------------------------------------------------- /croff/ni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/ni.c -------------------------------------------------------------------------------- /croff/nii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/nii.c -------------------------------------------------------------------------------- /croff/nrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/nrc -------------------------------------------------------------------------------- /croff/ntab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/ntab.c -------------------------------------------------------------------------------- /croff/pti.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/pti.s -------------------------------------------------------------------------------- /croff/sufrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/sufrc -------------------------------------------------------------------------------- /croff/suftab.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/suftab.s -------------------------------------------------------------------------------- /croff/t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/t.h -------------------------------------------------------------------------------- /croff/t.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/t.s -------------------------------------------------------------------------------- /croff/tacct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/tacct.c -------------------------------------------------------------------------------- /croff/tdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/tdef.h -------------------------------------------------------------------------------- /croff/term/code.300: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/code.300 -------------------------------------------------------------------------------- /croff/term/tab300-12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/tab300-12.c -------------------------------------------------------------------------------- /croff/term/tab300.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/tab300.c -------------------------------------------------------------------------------- /croff/term/tab300s-12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/tab300s-12.c -------------------------------------------------------------------------------- /croff/term/tab300s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/tab300s.c -------------------------------------------------------------------------------- /croff/term/tab37.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/tab37.c -------------------------------------------------------------------------------- /croff/term/tab450-12-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/tab450-12-8.c -------------------------------------------------------------------------------- /croff/term/tab450-12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/tab450-12.c -------------------------------------------------------------------------------- /croff/term/tab450.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/tab450.c -------------------------------------------------------------------------------- /croff/term/tabtn300.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/tabtn300.c -------------------------------------------------------------------------------- /croff/term/termrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/term/termrc -------------------------------------------------------------------------------- /croff/tw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/croff/tw.h -------------------------------------------------------------------------------- /neqn/ne.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/ne.g -------------------------------------------------------------------------------- /neqn/ne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/ne.h -------------------------------------------------------------------------------- /neqn/ne0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/ne0.c -------------------------------------------------------------------------------- /neqn/ne1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/ne1.c -------------------------------------------------------------------------------- /neqn/ne2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/ne2.c -------------------------------------------------------------------------------- /neqn/ne3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/ne3.c -------------------------------------------------------------------------------- /neqn/ne4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/ne4.c -------------------------------------------------------------------------------- /neqn/ne5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/ne5.c -------------------------------------------------------------------------------- /neqn/ne6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/ne6.c -------------------------------------------------------------------------------- /neqn/nelex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/nelex.c -------------------------------------------------------------------------------- /neqn/neqnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/neqn/neqnrc -------------------------------------------------------------------------------- /roff/roff1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/roff/roff1.s -------------------------------------------------------------------------------- /roff/roff2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/roff/roff2.s -------------------------------------------------------------------------------- /roff/roff3.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/roff/roff3.s -------------------------------------------------------------------------------- /roff/roff4.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/roff/roff4.s -------------------------------------------------------------------------------- /roff/roff5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/roff/roff5.s -------------------------------------------------------------------------------- /roff/roff7.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/roff/roff7.s -------------------------------------------------------------------------------- /roff/roff8.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/roff/roff8.s -------------------------------------------------------------------------------- /tbl/t..c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t..c -------------------------------------------------------------------------------- /tbl/t0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t0.c -------------------------------------------------------------------------------- /tbl/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t1.c -------------------------------------------------------------------------------- /tbl/t2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t2.c -------------------------------------------------------------------------------- /tbl/t3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t3.c -------------------------------------------------------------------------------- /tbl/t4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t4.c -------------------------------------------------------------------------------- /tbl/t5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t5.c -------------------------------------------------------------------------------- /tbl/t6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t6.c -------------------------------------------------------------------------------- /tbl/t7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t7.c -------------------------------------------------------------------------------- /tbl/t8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t8.c -------------------------------------------------------------------------------- /tbl/t9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/t9.c -------------------------------------------------------------------------------- /tbl/tb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/tb.c -------------------------------------------------------------------------------- /tbl/tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/tc.c -------------------------------------------------------------------------------- /tbl/te.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/te.c -------------------------------------------------------------------------------- /tbl/tf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/tf.c -------------------------------------------------------------------------------- /tbl/tg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/tg.c -------------------------------------------------------------------------------- /tbl/ti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/ti.c -------------------------------------------------------------------------------- /tbl/tm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/tm.c -------------------------------------------------------------------------------- /tbl/ts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/ts.c -------------------------------------------------------------------------------- /tbl/tt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/tt.c -------------------------------------------------------------------------------- /tbl/tu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/tu.c -------------------------------------------------------------------------------- /tbl/tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alhadis/otroff/HEAD/tbl/tv.c --------------------------------------------------------------------------------