├── .devcontainer ├── Dockerfile ├── boot.sh ├── devcontainer.json └── term_settings │ └── extra_bashrc.sh ├── .github ├── dependabot.yml └── workflows │ ├── build-gcc9.yml │ ├── build.yml │ ├── check-dev-container.yml │ ├── check-missing-javadoc.yml │ ├── check-workflows.yml │ ├── coverage.yml │ ├── create-release.yml │ ├── javadoc.yml │ ├── pull-request.yml │ ├── push.yml │ ├── static-analysis.yml │ ├── test-cobj-api.yml │ ├── test-nist.yml │ ├── test-other.yml │ ├── update-github-pages.yml │ ├── windows-build.yml │ └── windows-test.yml ├── .gitignore ├── ABOUT-NLS ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTING_JP.md ├── COPYING ├── COPYING.LIB ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README.md ├── README_JP.md ├── ReleaseNote.md ├── TODO ├── aclocal.m4 ├── bin ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── cob-config.in └── cobjrun.c ├── check-format ├── cobj ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── check-format ├── cobj.c ├── cobj.h ├── codegen.c ├── config.c ├── config.def ├── cpp-check ├── error.c ├── exception.def ├── field.c ├── flag-help.def ├── flag.def ├── format ├── parser.c ├── parser.h ├── parser.y ├── pplex.c ├── pplex.l ├── pplex.l.m4 ├── ppparse.c ├── ppparse.h ├── ppparse.y ├── reserved.c ├── scanner.c ├── scanner.l ├── scanner.l.m4 ├── system.def ├── tree.c ├── tree.h ├── typeck.c ├── warning-help.def └── warning.def ├── compile ├── compile_libcobj.sh ├── config.guess ├── config.h.in ├── config.rpath ├── config.sub ├── config ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── boundary-limit.conf ├── bs2000.conf ├── cobol2002.conf ├── cobol85.conf ├── default-en.conf ├── default-jp.conf ├── default.conf ├── ibm.conf ├── jp-compat.conf ├── mf.conf └── mvs.conf ├── configure ├── configure.ac ├── copy ├── ChangeLog ├── Makefile.am ├── Makefile.in └── screenio.cpy ├── cpucheck.c ├── depcomp ├── doc ├── cobj-api_SpringBoot.md ├── cobj-api_SpringBoot_JP.md ├── configuration-params-JP.md ├── converted_Java_file_JP.md ├── requirements-all.md ├── specification-locking-indexed-file.md └── specification-locking-indexed-file_JP.md ├── format ├── image ├── doc1.png ├── doc2.png ├── doc3.png ├── doc4.png ├── doc5.png ├── doc6.png ├── doc7.png ├── doc8.png ├── doc9.png ├── readme1.png ├── readme1_en.png ├── readme2.png ├── readme2_en.png ├── readme3.png └── readme4.png ├── install-sh ├── lib ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── dummymac.c ├── getopt.c ├── getopt.h ├── getopt1.c └── gettext.h ├── libcobj.h ├── libcobj ├── .gitattributes ├── .gitignore ├── Makefile.am ├── Makefile.in ├── app │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── java │ │ │ └── jp │ │ │ └── osscons │ │ │ └── opensourcecobol │ │ │ └── libcobj │ │ │ ├── Const.java │ │ │ ├── call │ │ │ ├── CobolCallStackList.java │ │ │ ├── CobolResolve.java │ │ │ ├── CobolRunnable.java │ │ │ └── CobolSystemRoutine.java │ │ │ ├── common │ │ │ ├── CobolCallParams.java │ │ │ ├── CobolCheck.java │ │ │ ├── CobolConstant.java │ │ │ ├── CobolControl.java │ │ │ ├── CobolEncoding.java │ │ │ ├── CobolExternal.java │ │ │ ├── CobolInspect.java │ │ │ ├── CobolIntrinsic.java │ │ │ ├── CobolModule.java │ │ │ ├── CobolString.java │ │ │ ├── CobolUtil.java │ │ │ ├── GetAbstractCobolField.java │ │ │ └── GetInt.java │ │ │ ├── data │ │ │ ├── AbstractCobolField.java │ │ │ ├── CobolAlphanumericAllField.java │ │ │ ├── CobolAlphanumericEditedField.java │ │ │ ├── CobolAlphanumericField.java │ │ │ ├── CobolDataStorage.java │ │ │ ├── CobolDecimal.java │ │ │ ├── CobolFieldAttribute.java │ │ │ ├── CobolFieldFactory.java │ │ │ ├── CobolGroupField.java │ │ │ ├── CobolNationalAllField.java │ │ │ ├── CobolNationalEditedField.java │ │ │ ├── CobolNationalField.java │ │ │ ├── CobolNumericBinaryField.java │ │ │ ├── CobolNumericDoubleField.java │ │ │ ├── CobolNumericEditedField.java │ │ │ ├── CobolNumericField.java │ │ │ └── CobolNumericPackedField.java │ │ │ ├── exceptions │ │ │ ├── CobolExceptionId.java │ │ │ ├── CobolExceptionInfo.java │ │ │ ├── CobolExceptionTabCode.java │ │ │ ├── CobolRuntimeException.java │ │ │ └── CobolStopRunException.java │ │ │ ├── file │ │ │ ├── CobolFile.java │ │ │ ├── CobolFileFactory.java │ │ │ ├── CobolFileKey.java │ │ │ ├── CobolFileSort.java │ │ │ ├── CobolIndexedFile.java │ │ │ ├── CobolItem.java │ │ │ ├── CobolLineSequentialFile.java │ │ │ ├── CobolRelativeFile.java │ │ │ ├── CobolSequentialFile.java │ │ │ ├── CobolSort.java │ │ │ ├── FileIO.java │ │ │ ├── FileStruct.java │ │ │ ├── IndexedCursor.java │ │ │ ├── IndexedFile.java │ │ │ ├── KeyComponent.java │ │ │ ├── Linage.java │ │ │ └── MemoryStruct.java │ │ │ ├── termio │ │ │ └── CobolTerminal.java │ │ │ ├── ui │ │ │ ├── CobolCallResult.java │ │ │ ├── CobolResultDouble.java │ │ │ ├── CobolResultInt.java │ │ │ ├── CobolResultSet.java │ │ │ ├── CobolResultSetException.java │ │ │ └── CobolResultString.java │ │ │ └── user_util │ │ │ ├── cobj_api │ │ │ ├── ApiFiles.java │ │ │ └── ApiFilesOptions.java │ │ │ └── indexed_file │ │ │ ├── CobolFileKeyInfo.java │ │ │ ├── ErrorLib.java │ │ │ ├── FileLineSeqRecordReader.java │ │ │ ├── FileSeqRecordReader.java │ │ │ ├── IndexedFileUtilMain.java │ │ │ ├── LoadResult.java │ │ │ ├── RecordReader.java │ │ │ ├── RecordWriter.java │ │ │ ├── StdinRecordReader.java │ │ │ └── UserDataFormat.java │ │ └── test │ │ └── java │ │ └── jp │ │ └── osscons │ │ └── opensourcecobol │ │ └── libcobj │ │ └── user_util │ │ └── cobj_api │ │ ├── ApiFilesTest.java │ │ ├── test.json │ │ ├── testController.txt │ │ └── testRecord.txt ├── bin │ ├── cobj-api │ ├── cobj-idx │ └── cobj-idx-test ├── check-missing-javadoc.sh ├── config │ ├── pmdRuleSet.xml │ └── spotbugsFilter.xml ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle.kts ├── ltmain.sh ├── missing ├── mkinstalldirs ├── tarstamp.h ├── tests ├── .gitignore ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── README.md ├── README_JP.md ├── a.sh ├── a.txt ├── atlocal.in ├── cobj-idx.at ├── cobj-idx.src │ ├── create.at │ ├── info.at │ ├── load.at │ ├── migrate.at │ ├── misc.at │ ├── test-data │ │ └── indexed_file.dat │ ├── unload.at │ └── unlock.at ├── cobol85 │ ├── CM │ │ ├── CM101M.CBL │ │ ├── CM102M.CBL │ │ ├── CM103M.CBL │ │ ├── CM104M.CBL │ │ ├── CM105M.CBL │ │ ├── CM201M.CBL │ │ ├── CM202M.CBL │ │ ├── CM303M.CBL │ │ └── CM401M.CBL │ ├── DB │ │ ├── DB101A.CBL │ │ ├── DB102A.CBL │ │ ├── DB103M.CBL │ │ ├── DB104A.CBL │ │ ├── DB105A.CBL │ │ ├── DB201A.CBL │ │ ├── DB202A.CBL │ │ ├── DB203A.CBL │ │ ├── DB204A.CBL │ │ ├── DB205A.CBL │ │ ├── DB301M.CBL │ │ ├── DB302M.CBL │ │ ├── DB303M.CBL │ │ ├── DB304M.CBL │ │ └── DB305M.CBL │ ├── EXEC85.conf.in │ ├── IC │ │ ├── IC101A.CBL │ │ ├── IC103A.CBL │ │ ├── IC106A.CBL │ │ ├── IC108A.CBL │ │ ├── IC112A.CBL │ │ ├── IC114A.CBL │ │ ├── IC116M.CBL │ │ ├── IC201A.CBL │ │ ├── IC203A.CBL │ │ ├── IC207A.CBL │ │ ├── IC209A.CBL │ │ ├── IC213A.CBL │ │ ├── IC216A.CBL │ │ ├── IC222A.CBL │ │ ├── IC223A.CBL │ │ ├── IC224A.CBL │ │ ├── IC225A.CBL │ │ ├── IC226A.CBL │ │ ├── IC227A.CBL │ │ ├── IC228A.CBL │ │ ├── IC233A.CBL │ │ ├── IC234A.CBL │ │ ├── IC235A.CBL │ │ ├── IC237A.CBL │ │ ├── IC401M.CBL │ │ └── lib │ │ │ ├── IC102A.CBL │ │ │ ├── IC104A.CBL │ │ │ ├── IC105A.CBL │ │ │ ├── IC107A.CBL │ │ │ ├── IC109A.CBL │ │ │ ├── IC110A.CBL │ │ │ ├── IC111A.CBL │ │ │ ├── IC113A.CBL │ │ │ ├── IC115A.CBL │ │ │ ├── IC117M.CBL │ │ │ ├── IC118M.CBL │ │ │ ├── IC202A.CBL │ │ │ ├── IC204A.CBL │ │ │ ├── IC205A.CBL │ │ │ ├── IC206A.CBL │ │ │ ├── IC208A.CBL │ │ │ ├── IC210A.CBL │ │ │ ├── IC211A.CBL │ │ │ ├── IC212A.CBL │ │ │ ├── IC214A.CBL │ │ │ ├── IC215A.CBL │ │ │ └── IC217A.CBL │ ├── IF │ │ ├── IF101A.CBL │ │ ├── IF102A.CBL │ │ ├── IF103A.CBL │ │ ├── IF104A.CBL │ │ ├── IF105A.CBL │ │ ├── IF106A.CBL │ │ ├── IF107A.CBL │ │ ├── IF108A.CBL │ │ ├── IF109A.CBL │ │ ├── IF110A.CBL │ │ ├── IF111A.CBL │ │ ├── IF112A.CBL │ │ ├── IF113A.CBL │ │ ├── IF114A.CBL │ │ ├── IF115A.CBL │ │ ├── IF116A.CBL │ │ ├── IF117A.CBL │ │ ├── IF118A.CBL │ │ ├── IF119A.CBL │ │ ├── IF120A.CBL │ │ ├── IF121A.CBL │ │ ├── IF122A.CBL │ │ ├── IF123A.CBL │ │ ├── IF124A.CBL │ │ ├── IF125A.CBL │ │ ├── IF126A.CBL │ │ ├── IF127A.CBL │ │ ├── IF128A.CBL │ │ ├── IF129A.CBL │ │ ├── IF130A.CBL │ │ ├── IF131A.CBL │ │ ├── IF132A.CBL │ │ ├── IF133A.CBL │ │ ├── IF134A.CBL │ │ ├── IF135A.CBL │ │ ├── IF136A.CBL │ │ ├── IF137A.CBL │ │ ├── IF138A.CBL │ │ ├── IF139A.CBL │ │ ├── IF140A.CBL │ │ ├── IF141A.CBL │ │ ├── IF142A.CBL │ │ ├── IF401M.CBL │ │ ├── IF402M.CBL │ │ └── IF403M.CBL │ ├── IX │ │ ├── IX101A.CBL │ │ ├── IX102A.SUB │ │ ├── IX103A.SUB │ │ ├── IX104A.CBL │ │ ├── IX105A.CBL │ │ ├── IX106A.CBL │ │ ├── IX107A.CBL │ │ ├── IX108A.CBL │ │ ├── IX109A.CBL │ │ ├── IX110A.SUB │ │ ├── IX111A.SUB │ │ ├── IX112A.CBL │ │ ├── IX113A.CBL │ │ ├── IX114A.SUB │ │ ├── IX115A.SUB │ │ ├── IX116A.SUB │ │ ├── IX117A.SUB │ │ ├── IX118A.SUB │ │ ├── IX119A.SUB │ │ ├── IX120A.SUB │ │ ├── IX121A.CBL │ │ ├── IX201A.CBL │ │ ├── IX202A.SUB │ │ ├── IX203A.SUB │ │ ├── IX204A.CBL │ │ ├── IX205A.CBL │ │ ├── IX206A.CBL │ │ ├── IX207A.CBL │ │ ├── IX208A.CBL │ │ ├── IX209A.CBL │ │ ├── IX210A.CBL │ │ ├── IX211A.CBL │ │ ├── IX212A.CBL │ │ ├── IX213A.CBL │ │ ├── IX214A.CBL │ │ ├── IX215A.CBL │ │ ├── IX216A.CBL │ │ ├── IX217A.CBL │ │ ├── IX218A.CBL │ │ ├── IX301M.CBL │ │ ├── IX302M.CBL │ │ └── IX401M.CBL │ ├── Makefile.am │ ├── Makefile.in │ ├── NC │ │ ├── NC101A.CBL │ │ ├── NC102A.CBL │ │ ├── NC103A.CBL │ │ ├── NC104A.CBL │ │ ├── NC105A.CBL │ │ ├── NC106A.CBL │ │ ├── NC107A.CBL │ │ ├── NC108M.CBL │ │ ├── NC109M.CBL │ │ ├── NC109M.DAT │ │ ├── NC110M.CBL │ │ ├── NC111A.CBL │ │ ├── NC112A.CBL │ │ ├── NC113M.CBL │ │ ├── NC114M.CBL │ │ ├── NC115A.CBL │ │ ├── NC116A.CBL │ │ ├── NC117A.CBL │ │ ├── NC118A.CBL │ │ ├── NC119A.CBL │ │ ├── NC120A.CBL │ │ ├── NC121M.CBL │ │ ├── NC122A.CBL │ │ ├── NC123A.CBL │ │ ├── NC124A.CBL │ │ ├── NC125A.CBL │ │ ├── NC126A.CBL │ │ ├── NC127A.CBL │ │ ├── NC131A.CBL │ │ ├── NC132A.CBL │ │ ├── NC133A.CBL │ │ ├── NC134A.CBL │ │ ├── NC135A.CBL │ │ ├── NC136A.CBL │ │ ├── NC137A.CBL │ │ ├── NC138A.CBL │ │ ├── NC139A.CBL │ │ ├── NC140A.CBL │ │ ├── NC141A.CBL │ │ ├── NC170A.CBL │ │ ├── NC171A.CBL │ │ ├── NC172A.CBL │ │ ├── NC173A.CBL │ │ ├── NC174A.CBL │ │ ├── NC175A.CBL │ │ ├── NC176A.CBL │ │ ├── NC177A.CBL │ │ ├── NC201A.CBL │ │ ├── NC202A.CBL │ │ ├── NC203A.CBL │ │ ├── NC204M.CBL │ │ ├── NC204M.DAT │ │ ├── NC205A.CBL │ │ ├── NC206A.CBL │ │ ├── NC207A.CBL │ │ ├── NC208A.CBL │ │ ├── NC209A.CBL │ │ ├── NC210A.CBL │ │ ├── NC211A.CBL │ │ ├── NC214M.CBL │ │ ├── NC215A.CBL │ │ ├── NC216A.CBL │ │ ├── NC217A.CBL │ │ ├── NC218A.CBL │ │ ├── NC219A.CBL │ │ ├── NC220M.CBL │ │ ├── NC221A.CBL │ │ ├── NC222A.CBL │ │ ├── NC223A.CBL │ │ ├── NC224A.CBL │ │ ├── NC225A.CBL │ │ ├── NC231A.CBL │ │ ├── NC232A.CBL │ │ ├── NC233A.CBL │ │ ├── NC234A.CBL │ │ ├── NC235A.CBL │ │ ├── NC236A.CBL │ │ ├── NC237A.CBL │ │ ├── NC238A.CBL │ │ ├── NC239A.CBL │ │ ├── NC240A.CBL │ │ ├── NC241A.CBL │ │ ├── NC242A.CBL │ │ ├── NC243A.CBL │ │ ├── NC244A.CBL │ │ ├── NC245A.CBL │ │ ├── NC246A.CBL │ │ ├── NC247A.CBL │ │ ├── NC248A.CBL │ │ ├── NC250A.CBL │ │ ├── NC251A.CBL │ │ ├── NC252A.CBL │ │ ├── NC253A.CBL │ │ ├── NC254A.CBL │ │ ├── NC302M.CBL │ │ ├── NC303M.CBL │ │ └── NC401M.CBL │ ├── OB │ │ ├── OBIC1A.CBL │ │ ├── OBNC1M.CBL │ │ ├── OBNC2M.CBL │ │ ├── OBSQ1A.CBL │ │ ├── OBSQ3A.CBL │ │ ├── OBSQ4A.SUB │ │ ├── OBSQ5A.SUB │ │ └── lib │ │ │ ├── OBIC2A.CBL │ │ │ └── OBIC3A.CBL │ ├── README.md │ ├── RL │ │ ├── RL101A.CBL │ │ ├── RL102A.SUB │ │ ├── RL103A.SUB │ │ ├── RL104A.CBL │ │ ├── RL105A.CBL │ │ ├── RL106A.CBL │ │ ├── RL107A.CBL │ │ ├── RL108A.CBL │ │ ├── RL109A.SUB │ │ ├── RL110A.SUB │ │ ├── RL111A.CBL │ │ ├── RL112A.CBL │ │ ├── RL113A.CBL │ │ ├── RL114A.CBL │ │ ├── RL115A.CBL │ │ ├── RL116A.CBL │ │ ├── RL117A.CBL │ │ ├── RL118A.CBL │ │ ├── RL119A.CBL │ │ ├── RL201A.CBL │ │ ├── RL202A.SUB │ │ ├── RL203A.SUB │ │ ├── RL204A.CBL │ │ ├── RL205A.CBL │ │ ├── RL206A.CBL │ │ ├── RL207A.SUB │ │ ├── RL208A.SUB │ │ ├── RL209A.CBL │ │ ├── RL210A.CBL │ │ ├── RL211A.CBL │ │ ├── RL212A.CBL │ │ ├── RL213A.SUB │ │ ├── RL301M.CBL │ │ ├── RL302M.CBL │ │ └── RL401M.CBL │ ├── RW │ │ ├── RW101A.CBL │ │ ├── RW102A.CBL │ │ ├── RW103A.CBL │ │ ├── RW104A.CBL │ │ ├── RW301M.CBL │ │ └── RW302M.CBL │ ├── SG │ │ ├── SG101A.CBL │ │ ├── SG102A.CBL │ │ ├── SG103A.CBL │ │ ├── SG104A.CBL │ │ ├── SG105A.CBL │ │ ├── SG106A.CBL │ │ ├── SG201A.CBL │ │ ├── SG202A.CBL │ │ ├── SG203A.CBL │ │ ├── SG204A.CBL │ │ ├── SG302M.CBL │ │ ├── SG303M.CBL │ │ └── SG401M.CBL │ ├── SM │ │ ├── SM101A.CBL │ │ ├── SM102A.SUB │ │ ├── SM103A.CBL │ │ ├── SM104A.SUB │ │ ├── SM105A.CBL │ │ ├── SM106A.CBL │ │ ├── SM107A.CBL │ │ ├── SM201A.CBL │ │ ├── SM202A.SUB │ │ ├── SM203A.CBL │ │ ├── SM204A.SUB │ │ ├── SM205A.CBL │ │ ├── SM206A.CBL │ │ ├── SM207A.CBL │ │ ├── SM208A.CBL │ │ ├── SM301M.CBL │ │ └── SM401M.CBL │ ├── SQ │ │ ├── SQ101M.CBL │ │ ├── SQ102A.CBL │ │ ├── SQ103A.CBL │ │ ├── SQ104A.CBL │ │ ├── SQ105A.CBL │ │ ├── SQ106A.CBL │ │ ├── SQ107A.CBL │ │ ├── SQ108A.CBL │ │ ├── SQ109M.CBL │ │ ├── SQ110M.CBL │ │ ├── SQ111A.CBL │ │ ├── SQ112A.CBL │ │ ├── SQ113A.CBL │ │ ├── SQ114A.CBL │ │ ├── SQ115A.CBL │ │ ├── SQ116A.CBL │ │ ├── SQ117A.CBL │ │ ├── SQ121A.CBL │ │ ├── SQ122A.CBL │ │ ├── SQ123A.CBL │ │ ├── SQ124A.CBL │ │ ├── SQ125A.CBL │ │ ├── SQ126A.CBL │ │ ├── SQ127A.CBL │ │ ├── SQ128A.CBL │ │ ├── SQ129A.CBL │ │ ├── SQ130A.CBL │ │ ├── SQ131A.CBL │ │ ├── SQ132A.CBL │ │ ├── SQ133A.CBL │ │ ├── SQ134A.CBL │ │ ├── SQ135A.CBL │ │ ├── SQ136A.CBL │ │ ├── SQ137A.CBL │ │ ├── SQ138A.CBL │ │ ├── SQ139A.CBL │ │ ├── SQ140A.CBL │ │ ├── SQ141A.CBL │ │ ├── SQ142A.CBL │ │ ├── SQ143A.CBL │ │ ├── SQ144A.CBL │ │ ├── SQ146A.CBL │ │ ├── SQ147A.CBL │ │ ├── SQ148A.CBL │ │ ├── SQ149A.CBL │ │ ├── SQ150A.CBL │ │ ├── SQ151A.CBL │ │ ├── SQ152A.CBL │ │ ├── SQ153A.CBL │ │ ├── SQ154A.CBL │ │ ├── SQ155A.CBL │ │ ├── SQ156A.CBL │ │ ├── SQ201M.CBL │ │ ├── SQ202A.CBL │ │ ├── SQ203A.SUB │ │ ├── SQ204A.CBL │ │ ├── SQ205A.CBL │ │ ├── SQ206A.CBL │ │ ├── SQ207M.CBL │ │ ├── SQ208M.CBL │ │ ├── SQ209M.CBL │ │ ├── SQ210M.CBL │ │ ├── SQ211A.CBL │ │ ├── SQ212A.CBL │ │ ├── SQ213A.CBL │ │ ├── SQ214A.CBL │ │ ├── SQ215A.CBL │ │ ├── SQ216A.CBL │ │ ├── SQ217A.CBL │ │ ├── SQ218A.CBL │ │ ├── SQ219A.CBL │ │ ├── SQ220A.CBL │ │ ├── SQ221A.CBL │ │ ├── SQ222A.CBL │ │ ├── SQ223A.CBL │ │ ├── SQ224A.CBL │ │ ├── SQ225A.CBL │ │ ├── SQ226A.CBL │ │ ├── SQ227A.CBL │ │ ├── SQ228A.CBL │ │ ├── SQ229A.CBL │ │ ├── SQ230A.CBL │ │ ├── SQ302M.CBL │ │ ├── SQ303M.CBL │ │ └── SQ401M.CBL │ ├── ST │ │ ├── ST101A.CBL │ │ ├── ST102A.SUB │ │ ├── ST103A.SUB │ │ ├── ST104A.CBL │ │ ├── ST105A.SUB │ │ ├── ST106A.CBL │ │ ├── ST107A.SUB │ │ ├── ST108A.CBL │ │ ├── ST109A.CBL │ │ ├── ST110A.SUB │ │ ├── ST111A.SUB │ │ ├── ST112M.CBL │ │ ├── ST113M.SUB │ │ ├── ST114M.SUB │ │ ├── ST115A.CBL │ │ ├── ST116A.SUB │ │ ├── ST117A.SUB │ │ ├── ST118A.CBL │ │ ├── ST119A.CBL │ │ ├── ST120A.SUB │ │ ├── ST121A.SUB │ │ ├── ST122A.CBL │ │ ├── ST123A.SUB │ │ ├── ST124A.SUB │ │ ├── ST125A.CBL │ │ ├── ST126A.SUB │ │ ├── ST127A.CBL │ │ ├── ST131A.CBL │ │ ├── ST132A.CBL │ │ ├── ST133A.CBL │ │ ├── ST134A.CBL │ │ ├── ST135A.CBL │ │ ├── ST136A.CBL │ │ ├── ST137A.CBL │ │ ├── ST139A.CBL │ │ ├── ST140A.CBL │ │ ├── ST144A.CBL │ │ ├── ST146A.CBL │ │ ├── ST147A.CBL │ │ └── ST301M.CBL │ ├── copy │ │ ├── ALTLB │ │ ├── K101A │ │ ├── K1DAA │ │ ├── K1FDA │ │ ├── K1P01 │ │ ├── K1PRA │ │ ├── K1PRB │ │ ├── K1PRC │ │ ├── K1SEA │ │ ├── K1W01 │ │ ├── K1W02 │ │ ├── K1W03 │ │ ├── K1W04 │ │ ├── K1WKA │ │ ├── K1WKB │ │ ├── K1WKC │ │ ├── K1WKY │ │ ├── K1WKZ │ │ ├── K2PRA │ │ ├── K2SEA │ │ ├── K3FCA │ │ ├── K3FCB │ │ ├── K3IOA │ │ ├── K3IOB │ │ ├── K3LGE │ │ ├── K3OCA │ │ ├── K3SCA │ │ ├── K3SML │ │ ├── K3SNA │ │ ├── K3SNB │ │ ├── K4NTA │ │ ├── K501A │ │ ├── K501B │ │ ├── K5SDA │ │ ├── K5SDB │ │ ├── K6SCA │ │ ├── K7SEA │ │ ├── KK208A │ │ ├── KP001 │ │ ├── KP002 │ │ ├── KP003 │ │ ├── KP004 │ │ ├── KP005 │ │ ├── KP006 │ │ ├── KP007 │ │ ├── KP008 │ │ ├── KP009 │ │ ├── KP010 │ │ ├── KSM31 │ │ └── KSM41 │ ├── copyalt │ │ └── ALTLB │ ├── expand.pl │ ├── ifedit.sh │ ├── newcob.val │ ├── report.pl │ ├── summary.pl │ └── summary.txt ├── cobol_utf8.at ├── cobol_utf8.src │ ├── compare-national-diff-size.at │ ├── compare-national.at │ ├── error-print.at │ ├── file-handler-japanese.at │ ├── japanese-char-section-var.at │ ├── java-interface.at │ ├── limits.at │ ├── mb-space.at │ ├── national.at │ ├── pic-n.at │ ├── pic-x.at │ ├── program-id.at │ └── user-defined-word.at ├── command-line-options.at ├── command-line-options.src │ ├── B.at │ ├── C.at │ ├── E.at │ ├── Wcall-params.at │ ├── Wcolumn-overflow.at │ ├── Wconstant.at │ ├── Wimplicit-define.at │ ├── Wobsolete-Warchaic.at │ ├── Wparentheses.at │ ├── Wredefinition.at │ ├── Wstrict-typing.at │ ├── Wterminator.at │ ├── Wtruncate.at │ ├── Wunreachable.at │ ├── allow-key-in-rhs.conf │ ├── assign_external.at │ ├── conf.at │ ├── debug.at │ ├── ext.at │ ├── fdefaultbyte-f-0.txt │ ├── fdefaultbyte-f-255.txt │ ├── fdefaultbyte-f-48.txt │ ├── fdefaultbyte-g-0.txt │ ├── fdefaultbyte-g-255.txt │ ├── fdefaultbyte-g-48.txt │ ├── fdefaultbyte.at │ ├── ffold-copy.at │ ├── ffunctions-all.at │ ├── file-path.at │ ├── fmfcomment.at │ ├── free.at │ ├── fserial-variable.at │ ├── fshort-variable.at │ ├── fsyntax-only.at │ ├── ftrace-ftraceall.at │ ├── g.at │ ├── info-java-dir.at │ ├── jar.at │ ├── java-package.at │ ├── list-reserved.at │ ├── m.at │ ├── std.at │ ├── stop-literal-statement-archaic.conf │ ├── stop-literal-statement-obsolete.conf │ └── t.at ├── data-rep-O ├── data-rep.at ├── data-rep.src │ ├── binary.at │ ├── display.at │ ├── numeric-display.cob │ ├── numeric-dump.cob │ ├── packed.at │ └── pointer.at ├── file-lock.at ├── file-lock.src │ ├── access-different-record.at │ ├── access-same-record.at │ ├── indexed-file │ │ └── old_indexed_file.dat │ ├── input-mode.at │ ├── lock-file.at │ ├── lock-mode-automatic.at │ ├── lock-mode-clause.at │ ├── module-sync │ │ ├── setValue.java │ │ └── wait.java │ ├── old-file.at │ ├── open-input.at │ ├── open-start-write-rewrite.at │ ├── release-lock.at │ └── same-process.at ├── i18n_sjis.at ├── i18n_sjis.src │ ├── data │ │ ├── in-sjis.txt │ │ ├── in-utf8.txt │ │ ├── out-sjis.txt │ │ └── out-utf8.txt │ ├── error-print.at │ ├── limits.at │ ├── mb-space.at │ ├── national.at │ ├── pic-n.at │ ├── pic-x.at │ ├── program-id.at │ └── user-defined-word.at ├── i18n_utf8.at ├── i18n_utf8.src │ ├── error-print.at │ ├── limits.at │ ├── mb-space.at │ ├── national.at │ ├── pic-bn.at │ ├── pic-n.at │ ├── pic-x.at │ ├── program-id.at │ ├── stored-char-length.at │ ├── user-defined-word.at │ └── warn-mixture-byte.at ├── jp-compat.at ├── jp-compat.src │ ├── abort-on-file-error.at │ ├── assign-devicename.at │ ├── catch-exception.at │ ├── cob68-copy.at │ ├── compat-check.at │ ├── copy-joining.at │ ├── copy-leading-trailing.at │ ├── data-desc-no-dot.at │ ├── empty-imperative.at │ ├── end-program-wrong.at │ ├── evaluate-also-missing.at │ ├── file-control.at │ ├── file-desc.at │ ├── file-userfh.at │ ├── greater-less-than-equal.at │ ├── intr-funcs.at │ ├── io-control.at │ ├── job-date.at │ ├── nibble-c-for-unsigned.at │ ├── occurs-param-order.at │ ├── search-key-in-rhs.at │ ├── sort-key-is.at │ ├── special-names.at │ ├── spl-registers.at │ ├── split-keys.at │ ├── switch-no-mnemonic.at │ ├── system-routine.at │ ├── upsi-x.at │ └── verbose-runtime.at ├── misc.at ├── misc.src │ ├── TEST_VAR_LENGTH.txt │ ├── cancel-hyphen.at │ ├── comp-n.at │ ├── comp-overflow.at │ ├── comp1-comp2.at │ ├── comp3-compute.at │ ├── comp3-int.at │ ├── comp3-is-numeric.at │ ├── comp3-overflow.at │ ├── compare-9.at │ ├── compare-large-number.at │ ├── compare-national-diff-size.at │ ├── compare-national.at │ ├── compile-multiple-files.at │ ├── convert-string-concat.at │ ├── copy-comments.at │ ├── current-date.at │ ├── display-inspect-sign.at │ ├── display-numeric-NUMERIC-class.at │ ├── display-numeric.at │ ├── env.at │ ├── evaluate-switch.at │ ├── exit-perform-cycle.at │ ├── exit-perform.at │ ├── fd-external.at │ ├── file-handler-japanese.at │ ├── fix-subtract.at │ ├── fserial-variable.at │ ├── high-low-value.at │ ├── index-comp.at │ ├── index-file-status.at │ ├── japanese-char-section-var.at │ ├── java-interface.at │ ├── move-sign-leading-separate-to-signed-comp3.at │ ├── perform-until-div.at │ ├── read_prev_after_start.at │ ├── record-key-duplicates-error.at │ ├── search-occurs-depending.at │ ├── signed-comp3.at │ ├── string-call-parameter.at │ ├── validate-indexed-file-keys.at │ ├── variable-length-file.at │ └── version-string-in-java.at ├── package.m4 ├── run-O ├── run.at ├── run.src │ ├── accept.at │ ├── extensions.at │ ├── functions.at │ ├── fundamental.at │ ├── initialize.at │ ├── miscellaneous.at │ ├── ref-mod.at │ ├── return-code.at │ ├── subscripts.at │ └── system-routines.at ├── syntax.at └── syntax.src │ ├── assign-external.at │ ├── copy.at │ ├── data-records.at │ ├── definition.at │ ├── error-recovery.at │ ├── expression.at │ ├── free-1col-aster.at │ ├── indicator.at │ ├── move.at │ ├── multiply.at │ ├── occurs.at │ ├── redefines.at │ ├── set.at │ ├── subscripts.at │ ├── unmatured-copy.at │ └── value.at ├── update-version.sh └── win ├── cobj ├── PropertySheet.props ├── cobj.vcxproj ├── cobj.vcxproj.filters ├── cobj.vcxproj.user └── packages.config ├── config.h ├── defaults.h ├── make-install.ps1 ├── make-test.ps1 └── opensourcecobol4j.sln /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.devcontainer/boot.sh -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-gcc9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/build-gcc9.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check-dev-container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/check-dev-container.yml -------------------------------------------------------------------------------- /.github/workflows/check-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/check-workflows.yml -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.github/workflows/javadoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/javadoc.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/static-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/static-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test-cobj-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/test-cobj-api.yml -------------------------------------------------------------------------------- /.github/workflows/test-nist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/test-nist.yml -------------------------------------------------------------------------------- /.github/workflows/test-other.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/test-other.yml -------------------------------------------------------------------------------- /.github/workflows/update-github-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/update-github-pages.yml -------------------------------------------------------------------------------- /.github/workflows/windows-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/windows-build.yml -------------------------------------------------------------------------------- /.github/workflows/windows-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.github/workflows/windows-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/.gitignore -------------------------------------------------------------------------------- /ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/ABOUT-NLS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTING_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/CONTRIBUTING_JP.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/COPYING.LIB -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/README.md -------------------------------------------------------------------------------- /README_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/README_JP.md -------------------------------------------------------------------------------- /ReleaseNote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/ReleaseNote.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/TODO -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /bin/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/bin/ChangeLog -------------------------------------------------------------------------------- /bin/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/bin/Makefile.am -------------------------------------------------------------------------------- /bin/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/bin/Makefile.in -------------------------------------------------------------------------------- /bin/cob-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/bin/cob-config.in -------------------------------------------------------------------------------- /bin/cobjrun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/bin/cobjrun.c -------------------------------------------------------------------------------- /check-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/check-format -------------------------------------------------------------------------------- /cobj/ChangeLog: -------------------------------------------------------------------------------- 1 | 2020-07-01 2 | Developers edition release. 3 | -------------------------------------------------------------------------------- /cobj/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/Makefile.am -------------------------------------------------------------------------------- /cobj/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/Makefile.in -------------------------------------------------------------------------------- /cobj/check-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/check-format -------------------------------------------------------------------------------- /cobj/cobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/cobj.c -------------------------------------------------------------------------------- /cobj/cobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/cobj.h -------------------------------------------------------------------------------- /cobj/codegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/codegen.c -------------------------------------------------------------------------------- /cobj/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/config.c -------------------------------------------------------------------------------- /cobj/config.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/config.def -------------------------------------------------------------------------------- /cobj/cpp-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/cpp-check -------------------------------------------------------------------------------- /cobj/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/error.c -------------------------------------------------------------------------------- /cobj/exception.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/exception.def -------------------------------------------------------------------------------- /cobj/field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/field.c -------------------------------------------------------------------------------- /cobj/flag-help.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/flag-help.def -------------------------------------------------------------------------------- /cobj/flag.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/flag.def -------------------------------------------------------------------------------- /cobj/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/format -------------------------------------------------------------------------------- /cobj/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/parser.c -------------------------------------------------------------------------------- /cobj/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/parser.h -------------------------------------------------------------------------------- /cobj/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/parser.y -------------------------------------------------------------------------------- /cobj/pplex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/pplex.c -------------------------------------------------------------------------------- /cobj/pplex.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/pplex.l -------------------------------------------------------------------------------- /cobj/pplex.l.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/pplex.l.m4 -------------------------------------------------------------------------------- /cobj/ppparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/ppparse.c -------------------------------------------------------------------------------- /cobj/ppparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/ppparse.h -------------------------------------------------------------------------------- /cobj/ppparse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/ppparse.y -------------------------------------------------------------------------------- /cobj/reserved.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/reserved.c -------------------------------------------------------------------------------- /cobj/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/scanner.c -------------------------------------------------------------------------------- /cobj/scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/scanner.l -------------------------------------------------------------------------------- /cobj/scanner.l.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/scanner.l.m4 -------------------------------------------------------------------------------- /cobj/system.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/system.def -------------------------------------------------------------------------------- /cobj/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/tree.c -------------------------------------------------------------------------------- /cobj/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/tree.h -------------------------------------------------------------------------------- /cobj/typeck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/typeck.c -------------------------------------------------------------------------------- /cobj/warning-help.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/warning-help.def -------------------------------------------------------------------------------- /cobj/warning.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cobj/warning.def -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/compile -------------------------------------------------------------------------------- /compile_libcobj.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/compile_libcobj.sh -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config.guess -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config.h.in -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config.rpath -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config.sub -------------------------------------------------------------------------------- /config/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/ChangeLog -------------------------------------------------------------------------------- /config/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/Makefile.am -------------------------------------------------------------------------------- /config/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/Makefile.in -------------------------------------------------------------------------------- /config/boundary-limit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/boundary-limit.conf -------------------------------------------------------------------------------- /config/bs2000.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/bs2000.conf -------------------------------------------------------------------------------- /config/cobol2002.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/cobol2002.conf -------------------------------------------------------------------------------- /config/cobol85.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/cobol85.conf -------------------------------------------------------------------------------- /config/default-en.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/default-en.conf -------------------------------------------------------------------------------- /config/default-jp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/default-jp.conf -------------------------------------------------------------------------------- /config/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/default.conf -------------------------------------------------------------------------------- /config/ibm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/ibm.conf -------------------------------------------------------------------------------- /config/jp-compat.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/jp-compat.conf -------------------------------------------------------------------------------- /config/mf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/mf.conf -------------------------------------------------------------------------------- /config/mvs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/config/mvs.conf -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/configure.ac -------------------------------------------------------------------------------- /copy/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/copy/ChangeLog -------------------------------------------------------------------------------- /copy/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/copy/Makefile.am -------------------------------------------------------------------------------- /copy/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/copy/Makefile.in -------------------------------------------------------------------------------- /copy/screenio.cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/copy/screenio.cpy -------------------------------------------------------------------------------- /cpucheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/cpucheck.c -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/depcomp -------------------------------------------------------------------------------- /doc/cobj-api_SpringBoot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/doc/cobj-api_SpringBoot.md -------------------------------------------------------------------------------- /doc/cobj-api_SpringBoot_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/doc/cobj-api_SpringBoot_JP.md -------------------------------------------------------------------------------- /doc/configuration-params-JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/doc/configuration-params-JP.md -------------------------------------------------------------------------------- /doc/converted_Java_file_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/doc/converted_Java_file_JP.md -------------------------------------------------------------------------------- /doc/requirements-all.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/doc/requirements-all.md -------------------------------------------------------------------------------- /doc/specification-locking-indexed-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/doc/specification-locking-indexed-file.md -------------------------------------------------------------------------------- /format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/format -------------------------------------------------------------------------------- /image/doc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/doc1.png -------------------------------------------------------------------------------- /image/doc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/doc2.png -------------------------------------------------------------------------------- /image/doc3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/doc3.png -------------------------------------------------------------------------------- /image/doc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/doc4.png -------------------------------------------------------------------------------- /image/doc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/doc5.png -------------------------------------------------------------------------------- /image/doc6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/doc6.png -------------------------------------------------------------------------------- /image/doc7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/doc7.png -------------------------------------------------------------------------------- /image/doc8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/doc8.png -------------------------------------------------------------------------------- /image/doc9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/doc9.png -------------------------------------------------------------------------------- /image/readme1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/readme1.png -------------------------------------------------------------------------------- /image/readme1_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/readme1_en.png -------------------------------------------------------------------------------- /image/readme2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/readme2.png -------------------------------------------------------------------------------- /image/readme2_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/readme2_en.png -------------------------------------------------------------------------------- /image/readme3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/readme3.png -------------------------------------------------------------------------------- /image/readme4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/image/readme4.png -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/install-sh -------------------------------------------------------------------------------- /lib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/lib/ChangeLog -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/lib/Makefile.in -------------------------------------------------------------------------------- /lib/dummymac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/lib/dummymac.c -------------------------------------------------------------------------------- /lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/lib/getopt.c -------------------------------------------------------------------------------- /lib/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/lib/getopt.h -------------------------------------------------------------------------------- /lib/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/lib/getopt1.c -------------------------------------------------------------------------------- /lib/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/lib/gettext.h -------------------------------------------------------------------------------- /libcobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj.h -------------------------------------------------------------------------------- /libcobj/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/.gitattributes -------------------------------------------------------------------------------- /libcobj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/.gitignore -------------------------------------------------------------------------------- /libcobj/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/Makefile.am -------------------------------------------------------------------------------- /libcobj/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/Makefile.in -------------------------------------------------------------------------------- /libcobj/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/app/build.gradle.kts -------------------------------------------------------------------------------- /libcobj/bin/cobj-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/bin/cobj-api -------------------------------------------------------------------------------- /libcobj/bin/cobj-idx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/bin/cobj-idx -------------------------------------------------------------------------------- /libcobj/bin/cobj-idx-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/bin/cobj-idx-test -------------------------------------------------------------------------------- /libcobj/check-missing-javadoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/check-missing-javadoc.sh -------------------------------------------------------------------------------- /libcobj/config/pmdRuleSet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/config/pmdRuleSet.xml -------------------------------------------------------------------------------- /libcobj/config/spotbugsFilter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/config/spotbugsFilter.xml -------------------------------------------------------------------------------- /libcobj/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /libcobj/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/gradlew -------------------------------------------------------------------------------- /libcobj/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/gradlew.bat -------------------------------------------------------------------------------- /libcobj/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/libcobj/settings.gradle.kts -------------------------------------------------------------------------------- /ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/ltmain.sh -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/missing -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /tarstamp.h: -------------------------------------------------------------------------------- 1 | static char octardate[] = "Feb 06 2009 10:30:55 CET"; 2 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/ChangeLog -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/Makefile.in -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/README_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/README_JP.md -------------------------------------------------------------------------------- /tests/a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/a.sh -------------------------------------------------------------------------------- /tests/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/a.txt -------------------------------------------------------------------------------- /tests/atlocal.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/atlocal.in -------------------------------------------------------------------------------- /tests/cobj-idx.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobj-idx.at -------------------------------------------------------------------------------- /tests/cobj-idx.src/create.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobj-idx.src/create.at -------------------------------------------------------------------------------- /tests/cobj-idx.src/info.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobj-idx.src/info.at -------------------------------------------------------------------------------- /tests/cobj-idx.src/load.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobj-idx.src/load.at -------------------------------------------------------------------------------- /tests/cobj-idx.src/migrate.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobj-idx.src/migrate.at -------------------------------------------------------------------------------- /tests/cobj-idx.src/misc.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobj-idx.src/misc.at -------------------------------------------------------------------------------- /tests/cobj-idx.src/unload.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobj-idx.src/unload.at -------------------------------------------------------------------------------- /tests/cobj-idx.src/unlock.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobj-idx.src/unlock.at -------------------------------------------------------------------------------- /tests/cobol85/CM/CM101M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/CM/CM101M.CBL -------------------------------------------------------------------------------- /tests/cobol85/CM/CM102M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/CM/CM102M.CBL -------------------------------------------------------------------------------- /tests/cobol85/CM/CM103M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/CM/CM103M.CBL -------------------------------------------------------------------------------- /tests/cobol85/CM/CM104M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/CM/CM104M.CBL -------------------------------------------------------------------------------- /tests/cobol85/CM/CM105M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/CM/CM105M.CBL -------------------------------------------------------------------------------- /tests/cobol85/CM/CM201M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/CM/CM201M.CBL -------------------------------------------------------------------------------- /tests/cobol85/CM/CM202M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/CM/CM202M.CBL -------------------------------------------------------------------------------- /tests/cobol85/CM/CM303M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/CM/CM303M.CBL -------------------------------------------------------------------------------- /tests/cobol85/CM/CM401M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/CM/CM401M.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB101A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB101A.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB102A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB102A.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB103M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB103M.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB104A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB104A.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB105A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB105A.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB201A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB201A.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB202A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB202A.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB203A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB203A.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB204A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB204A.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB205A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB205A.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB301M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB301M.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB302M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB302M.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB303M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB303M.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB304M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB304M.CBL -------------------------------------------------------------------------------- /tests/cobol85/DB/DB305M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/DB/DB305M.CBL -------------------------------------------------------------------------------- /tests/cobol85/EXEC85.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/EXEC85.conf.in -------------------------------------------------------------------------------- /tests/cobol85/IC/IC101A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC101A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC103A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC103A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC106A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC106A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC108A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC108A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC112A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC112A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC114A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC114A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC116M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC116M.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC201A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC201A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC203A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC203A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC207A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC207A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC209A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC209A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC213A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC213A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC216A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC216A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC222A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC222A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC223A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC223A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC224A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC224A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC225A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC225A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC226A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC226A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC227A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC227A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC228A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC228A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC233A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC233A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC234A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC234A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC235A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC235A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC237A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC237A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/IC401M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/IC401M.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC102A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC102A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC104A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC104A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC105A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC105A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC107A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC107A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC109A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC109A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC110A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC110A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC111A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC111A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC113A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC113A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC115A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC115A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC117M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC117M.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC118M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC118M.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC202A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC202A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC204A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC204A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC205A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC205A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC206A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC206A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC208A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC208A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC210A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC210A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC211A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC211A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC212A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC212A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC214A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC214A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC215A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC215A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IC/lib/IC217A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IC/lib/IC217A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF101A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF101A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF102A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF102A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF103A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF103A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF104A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF104A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF105A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF105A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF106A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF106A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF107A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF107A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF108A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF108A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF109A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF109A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF110A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF110A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF111A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF111A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF112A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF112A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF113A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF113A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF114A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF114A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF115A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF115A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF116A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF116A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF117A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF117A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF118A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF118A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF119A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF119A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF120A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF120A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF121A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF121A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF122A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF122A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF123A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF123A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF124A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF124A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF125A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF125A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF126A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF126A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF127A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF127A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF128A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF128A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF129A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF129A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF130A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF130A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF131A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF131A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF132A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF132A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF133A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF133A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF134A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF134A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF135A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF135A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF136A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF136A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF137A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF137A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF138A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF138A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF139A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF139A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF140A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF140A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF141A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF141A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF142A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF142A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF401M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF401M.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF402M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF402M.CBL -------------------------------------------------------------------------------- /tests/cobol85/IF/IF403M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IF/IF403M.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX101A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX101A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX102A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX102A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX103A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX103A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX104A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX104A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX105A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX105A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX106A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX106A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX107A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX107A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX108A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX108A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX109A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX109A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX110A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX110A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX111A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX111A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX112A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX112A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX113A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX113A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX114A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX114A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX115A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX115A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX116A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX116A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX117A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX117A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX118A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX118A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX119A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX119A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX120A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX120A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX121A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX121A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX201A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX201A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX202A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX202A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX203A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX203A.SUB -------------------------------------------------------------------------------- /tests/cobol85/IX/IX204A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX204A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX205A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX205A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX206A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX206A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX207A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX207A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX208A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX208A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX209A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX209A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX210A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX210A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX211A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX211A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX212A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX212A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX213A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX213A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX214A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX214A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX215A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX215A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX216A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX216A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX217A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX217A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX218A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX218A.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX301M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX301M.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX302M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX302M.CBL -------------------------------------------------------------------------------- /tests/cobol85/IX/IX401M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/IX/IX401M.CBL -------------------------------------------------------------------------------- /tests/cobol85/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/Makefile.am -------------------------------------------------------------------------------- /tests/cobol85/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/Makefile.in -------------------------------------------------------------------------------- /tests/cobol85/NC/NC101A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC101A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC102A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC102A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC103A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC103A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC104A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC104A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC105A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC105A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC106A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC106A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC107A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC107A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC108M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC108M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC109M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC109M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC109M.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC109M.DAT -------------------------------------------------------------------------------- /tests/cobol85/NC/NC110M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC110M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC111A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC111A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC112A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC112A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC113M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC113M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC114M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC114M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC115A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC115A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC116A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC116A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC117A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC117A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC118A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC118A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC119A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC119A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC120A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC120A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC121M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC121M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC122A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC122A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC123A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC123A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC124A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC124A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC125A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC125A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC126A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC126A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC127A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC127A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC131A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC131A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC132A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC132A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC133A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC133A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC134A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC134A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC135A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC135A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC136A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC136A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC137A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC137A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC138A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC138A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC139A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC139A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC140A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC140A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC141A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC141A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC170A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC170A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC171A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC171A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC172A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC172A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC173A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC173A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC174A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC174A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC175A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC175A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC176A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC176A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC177A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC177A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC201A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC201A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC202A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC202A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC203A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC203A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC204M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC204M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC204M.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC204M.DAT -------------------------------------------------------------------------------- /tests/cobol85/NC/NC205A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC205A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC206A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC206A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC207A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC207A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC208A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC208A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC209A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC209A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC210A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC210A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC211A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC211A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC214M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC214M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC215A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC215A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC216A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC216A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC217A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC217A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC218A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC218A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC219A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC219A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC220M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC220M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC221A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC221A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC222A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC222A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC223A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC223A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC224A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC224A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC225A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC225A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC231A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC231A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC232A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC232A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC233A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC233A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC234A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC234A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC235A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC235A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC236A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC236A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC237A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC237A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC238A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC238A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC239A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC239A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC240A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC240A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC241A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC241A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC242A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC242A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC243A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC243A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC244A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC244A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC245A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC245A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC246A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC246A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC247A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC247A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC248A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC248A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC250A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC250A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC251A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC251A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC252A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC252A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC253A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC253A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC254A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC254A.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC302M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC302M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC303M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC303M.CBL -------------------------------------------------------------------------------- /tests/cobol85/NC/NC401M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/NC/NC401M.CBL -------------------------------------------------------------------------------- /tests/cobol85/OB/OBIC1A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/OB/OBIC1A.CBL -------------------------------------------------------------------------------- /tests/cobol85/OB/OBNC1M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/OB/OBNC1M.CBL -------------------------------------------------------------------------------- /tests/cobol85/OB/OBNC2M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/OB/OBNC2M.CBL -------------------------------------------------------------------------------- /tests/cobol85/OB/OBSQ1A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/OB/OBSQ1A.CBL -------------------------------------------------------------------------------- /tests/cobol85/OB/OBSQ3A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/OB/OBSQ3A.CBL -------------------------------------------------------------------------------- /tests/cobol85/OB/OBSQ4A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/OB/OBSQ4A.SUB -------------------------------------------------------------------------------- /tests/cobol85/OB/OBSQ5A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/OB/OBSQ5A.SUB -------------------------------------------------------------------------------- /tests/cobol85/OB/lib/OBIC2A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/OB/lib/OBIC2A.CBL -------------------------------------------------------------------------------- /tests/cobol85/OB/lib/OBIC3A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/OB/lib/OBIC3A.CBL -------------------------------------------------------------------------------- /tests/cobol85/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/README.md -------------------------------------------------------------------------------- /tests/cobol85/RL/RL101A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL101A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL102A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL102A.SUB -------------------------------------------------------------------------------- /tests/cobol85/RL/RL103A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL103A.SUB -------------------------------------------------------------------------------- /tests/cobol85/RL/RL104A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL104A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL105A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL105A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL106A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL106A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL107A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL107A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL108A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL108A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL109A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL109A.SUB -------------------------------------------------------------------------------- /tests/cobol85/RL/RL110A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL110A.SUB -------------------------------------------------------------------------------- /tests/cobol85/RL/RL111A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL111A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL112A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL112A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL113A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL113A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL114A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL114A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL115A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL115A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL116A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL116A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL117A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL117A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL118A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL118A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL119A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL119A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL201A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL201A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL202A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL202A.SUB -------------------------------------------------------------------------------- /tests/cobol85/RL/RL203A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL203A.SUB -------------------------------------------------------------------------------- /tests/cobol85/RL/RL204A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL204A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL205A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL205A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL206A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL206A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL207A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL207A.SUB -------------------------------------------------------------------------------- /tests/cobol85/RL/RL208A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL208A.SUB -------------------------------------------------------------------------------- /tests/cobol85/RL/RL209A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL209A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL210A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL210A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL211A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL211A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL212A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL212A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL213A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL213A.SUB -------------------------------------------------------------------------------- /tests/cobol85/RL/RL301M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL301M.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL302M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL302M.CBL -------------------------------------------------------------------------------- /tests/cobol85/RL/RL401M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RL/RL401M.CBL -------------------------------------------------------------------------------- /tests/cobol85/RW/RW101A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RW/RW101A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RW/RW102A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RW/RW102A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RW/RW103A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RW/RW103A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RW/RW104A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RW/RW104A.CBL -------------------------------------------------------------------------------- /tests/cobol85/RW/RW301M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RW/RW301M.CBL -------------------------------------------------------------------------------- /tests/cobol85/RW/RW302M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/RW/RW302M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG101A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG101A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG102A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG102A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG103A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG103A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG104A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG104A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG105A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG105A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG106A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG106A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG201A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG201A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG202A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG202A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG203A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG203A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG204A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG204A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG302M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG302M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG303M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG303M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SG/SG401M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SG/SG401M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM101A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM101A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM102A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM102A.SUB -------------------------------------------------------------------------------- /tests/cobol85/SM/SM103A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM103A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM104A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM104A.SUB -------------------------------------------------------------------------------- /tests/cobol85/SM/SM105A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM105A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM106A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM106A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM107A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM107A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM201A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM201A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM202A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM202A.SUB -------------------------------------------------------------------------------- /tests/cobol85/SM/SM203A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM203A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM204A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM204A.SUB -------------------------------------------------------------------------------- /tests/cobol85/SM/SM205A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM205A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM206A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM206A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM207A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM207A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM208A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM208A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM301M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM301M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SM/SM401M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SM/SM401M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ101M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ101M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ102A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ102A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ103A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ103A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ104A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ104A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ105A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ105A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ106A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ106A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ107A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ107A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ108A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ108A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ109M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ109M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ110M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ110M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ111A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ111A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ112A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ112A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ113A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ113A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ114A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ114A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ115A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ115A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ116A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ116A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ117A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ117A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ121A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ121A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ122A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ122A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ123A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ123A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ124A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ124A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ125A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ125A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ126A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ126A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ127A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ127A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ128A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ128A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ129A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ129A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ130A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ130A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ131A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ131A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ132A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ132A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ133A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ133A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ134A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ134A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ135A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ135A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ136A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ136A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ137A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ137A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ138A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ138A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ139A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ139A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ140A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ140A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ141A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ141A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ142A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ142A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ143A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ143A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ144A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ144A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ146A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ146A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ147A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ147A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ148A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ148A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ149A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ149A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ150A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ150A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ151A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ151A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ152A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ152A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ153A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ153A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ154A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ154A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ155A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ155A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ156A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ156A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ201M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ201M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ202A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ202A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ203A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ203A.SUB -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ204A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ204A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ205A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ205A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ206A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ206A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ207M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ207M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ208M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ208M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ209M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ209M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ210M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ210M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ211A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ211A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ212A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ212A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ213A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ213A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ214A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ214A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ215A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ215A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ216A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ216A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ217A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ217A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ218A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ218A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ219A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ219A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ220A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ220A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ221A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ221A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ222A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ222A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ223A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ223A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ224A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ224A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ225A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ225A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ226A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ226A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ227A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ227A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ228A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ228A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ229A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ229A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ230A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ230A.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ302M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ302M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ303M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ303M.CBL -------------------------------------------------------------------------------- /tests/cobol85/SQ/SQ401M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/SQ/SQ401M.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST101A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST101A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST102A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST102A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST103A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST103A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST104A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST104A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST105A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST105A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST106A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST106A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST107A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST107A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST108A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST108A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST109A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST109A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST110A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST110A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST111A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST111A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST112M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST112M.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST113M.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST113M.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST114M.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST114M.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST115A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST115A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST116A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST116A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST117A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST117A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST118A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST118A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST119A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST119A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST120A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST120A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST121A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST121A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST122A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST122A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST123A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST123A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST124A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST124A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST125A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST125A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST126A.SUB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST126A.SUB -------------------------------------------------------------------------------- /tests/cobol85/ST/ST127A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST127A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST131A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST131A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST132A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST132A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST133A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST133A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST134A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST134A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST135A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST135A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST136A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST136A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST137A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST137A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST139A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST139A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST140A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST140A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST144A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST144A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST146A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST146A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST147A.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST147A.CBL -------------------------------------------------------------------------------- /tests/cobol85/ST/ST301M.CBL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ST/ST301M.CBL -------------------------------------------------------------------------------- /tests/cobol85/copy/ALTLB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/ALTLB -------------------------------------------------------------------------------- /tests/cobol85/copy/K101A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K101A -------------------------------------------------------------------------------- /tests/cobol85/copy/K1DAA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1DAA -------------------------------------------------------------------------------- /tests/cobol85/copy/K1FDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1FDA -------------------------------------------------------------------------------- /tests/cobol85/copy/K1P01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1P01 -------------------------------------------------------------------------------- /tests/cobol85/copy/K1PRA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1PRA -------------------------------------------------------------------------------- /tests/cobol85/copy/K1PRB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1PRB -------------------------------------------------------------------------------- /tests/cobol85/copy/K1PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1PRC -------------------------------------------------------------------------------- /tests/cobol85/copy/K1SEA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1SEA -------------------------------------------------------------------------------- /tests/cobol85/copy/K1W01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1W01 -------------------------------------------------------------------------------- /tests/cobol85/copy/K1W02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1W02 -------------------------------------------------------------------------------- /tests/cobol85/copy/K1W03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1W03 -------------------------------------------------------------------------------- /tests/cobol85/copy/K1W04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1W04 -------------------------------------------------------------------------------- /tests/cobol85/copy/K1WKA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1WKA -------------------------------------------------------------------------------- /tests/cobol85/copy/K1WKB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1WKB -------------------------------------------------------------------------------- /tests/cobol85/copy/K1WKC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1WKC -------------------------------------------------------------------------------- /tests/cobol85/copy/K1WKY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1WKY -------------------------------------------------------------------------------- /tests/cobol85/copy/K1WKZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K1WKZ -------------------------------------------------------------------------------- /tests/cobol85/copy/K2PRA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K2PRA -------------------------------------------------------------------------------- /tests/cobol85/copy/K2SEA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K2SEA -------------------------------------------------------------------------------- /tests/cobol85/copy/K3FCA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K3FCA -------------------------------------------------------------------------------- /tests/cobol85/copy/K3FCB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K3FCB -------------------------------------------------------------------------------- /tests/cobol85/copy/K3IOA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K3IOA -------------------------------------------------------------------------------- /tests/cobol85/copy/K3IOB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K3IOB -------------------------------------------------------------------------------- /tests/cobol85/copy/K3LGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K3LGE -------------------------------------------------------------------------------- /tests/cobol85/copy/K3OCA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K3OCA -------------------------------------------------------------------------------- /tests/cobol85/copy/K3SCA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K3SCA -------------------------------------------------------------------------------- /tests/cobol85/copy/K3SML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K3SML -------------------------------------------------------------------------------- /tests/cobol85/copy/K3SNA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K3SNA -------------------------------------------------------------------------------- /tests/cobol85/copy/K3SNB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K3SNB -------------------------------------------------------------------------------- /tests/cobol85/copy/K4NTA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K4NTA -------------------------------------------------------------------------------- /tests/cobol85/copy/K501A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K501A -------------------------------------------------------------------------------- /tests/cobol85/copy/K501B: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K501B -------------------------------------------------------------------------------- /tests/cobol85/copy/K5SDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K5SDA -------------------------------------------------------------------------------- /tests/cobol85/copy/K5SDB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K5SDB -------------------------------------------------------------------------------- /tests/cobol85/copy/K6SCA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K6SCA -------------------------------------------------------------------------------- /tests/cobol85/copy/K7SEA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/K7SEA -------------------------------------------------------------------------------- /tests/cobol85/copy/KK208A: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KK208A -------------------------------------------------------------------------------- /tests/cobol85/copy/KP001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KP001 -------------------------------------------------------------------------------- /tests/cobol85/copy/KP002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KP002 -------------------------------------------------------------------------------- /tests/cobol85/copy/KP003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KP003 -------------------------------------------------------------------------------- /tests/cobol85/copy/KP004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KP004 -------------------------------------------------------------------------------- /tests/cobol85/copy/KP005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KP005 -------------------------------------------------------------------------------- /tests/cobol85/copy/KP006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KP006 -------------------------------------------------------------------------------- /tests/cobol85/copy/KP007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KP007 -------------------------------------------------------------------------------- /tests/cobol85/copy/KP008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KP008 -------------------------------------------------------------------------------- /tests/cobol85/copy/KP009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KP009 -------------------------------------------------------------------------------- /tests/cobol85/copy/KP010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KP010 -------------------------------------------------------------------------------- /tests/cobol85/copy/KSM31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KSM31 -------------------------------------------------------------------------------- /tests/cobol85/copy/KSM41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copy/KSM41 -------------------------------------------------------------------------------- /tests/cobol85/copyalt/ALTLB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/copyalt/ALTLB -------------------------------------------------------------------------------- /tests/cobol85/expand.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/expand.pl -------------------------------------------------------------------------------- /tests/cobol85/ifedit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/ifedit.sh -------------------------------------------------------------------------------- /tests/cobol85/newcob.val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/newcob.val -------------------------------------------------------------------------------- /tests/cobol85/report.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/report.pl -------------------------------------------------------------------------------- /tests/cobol85/summary.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/summary.pl -------------------------------------------------------------------------------- /tests/cobol85/summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol85/summary.txt -------------------------------------------------------------------------------- /tests/cobol_utf8.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol_utf8.at -------------------------------------------------------------------------------- /tests/cobol_utf8.src/compare-national.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol_utf8.src/compare-national.at -------------------------------------------------------------------------------- /tests/cobol_utf8.src/error-print.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol_utf8.src/error-print.at -------------------------------------------------------------------------------- /tests/cobol_utf8.src/java-interface.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol_utf8.src/java-interface.at -------------------------------------------------------------------------------- /tests/cobol_utf8.src/limits.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol_utf8.src/limits.at -------------------------------------------------------------------------------- /tests/cobol_utf8.src/mb-space.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol_utf8.src/mb-space.at -------------------------------------------------------------------------------- /tests/cobol_utf8.src/national.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol_utf8.src/national.at -------------------------------------------------------------------------------- /tests/cobol_utf8.src/pic-n.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol_utf8.src/pic-n.at -------------------------------------------------------------------------------- /tests/cobol_utf8.src/pic-x.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol_utf8.src/pic-x.at -------------------------------------------------------------------------------- /tests/cobol_utf8.src/program-id.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/cobol_utf8.src/program-id.at -------------------------------------------------------------------------------- /tests/command-line-options.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.at -------------------------------------------------------------------------------- /tests/command-line-options.src/B.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/B.at -------------------------------------------------------------------------------- /tests/command-line-options.src/C.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/C.at -------------------------------------------------------------------------------- /tests/command-line-options.src/E.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/E.at -------------------------------------------------------------------------------- /tests/command-line-options.src/conf.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/conf.at -------------------------------------------------------------------------------- /tests/command-line-options.src/debug.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/debug.at -------------------------------------------------------------------------------- /tests/command-line-options.src/ext.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/ext.at -------------------------------------------------------------------------------- /tests/command-line-options.src/free.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/free.at -------------------------------------------------------------------------------- /tests/command-line-options.src/g.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/g.at -------------------------------------------------------------------------------- /tests/command-line-options.src/jar.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/jar.at -------------------------------------------------------------------------------- /tests/command-line-options.src/m.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/m.at -------------------------------------------------------------------------------- /tests/command-line-options.src/std.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/std.at -------------------------------------------------------------------------------- /tests/command-line-options.src/t.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/command-line-options.src/t.at -------------------------------------------------------------------------------- /tests/data-rep-O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/data-rep-O -------------------------------------------------------------------------------- /tests/data-rep.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/data-rep.at -------------------------------------------------------------------------------- /tests/data-rep.src/binary.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/data-rep.src/binary.at -------------------------------------------------------------------------------- /tests/data-rep.src/display.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/data-rep.src/display.at -------------------------------------------------------------------------------- /tests/data-rep.src/numeric-display.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/data-rep.src/numeric-display.cob -------------------------------------------------------------------------------- /tests/data-rep.src/numeric-dump.cob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/data-rep.src/numeric-dump.cob -------------------------------------------------------------------------------- /tests/data-rep.src/packed.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/data-rep.src/packed.at -------------------------------------------------------------------------------- /tests/data-rep.src/pointer.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/data-rep.src/pointer.at -------------------------------------------------------------------------------- /tests/file-lock.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/file-lock.at -------------------------------------------------------------------------------- /tests/file-lock.src/input-mode.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/file-lock.src/input-mode.at -------------------------------------------------------------------------------- /tests/file-lock.src/lock-file.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/file-lock.src/lock-file.at -------------------------------------------------------------------------------- /tests/file-lock.src/lock-mode-clause.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/file-lock.src/lock-mode-clause.at -------------------------------------------------------------------------------- /tests/file-lock.src/old-file.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/file-lock.src/old-file.at -------------------------------------------------------------------------------- /tests/file-lock.src/open-input.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/file-lock.src/open-input.at -------------------------------------------------------------------------------- /tests/file-lock.src/release-lock.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/file-lock.src/release-lock.at -------------------------------------------------------------------------------- /tests/file-lock.src/same-process.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/file-lock.src/same-process.at -------------------------------------------------------------------------------- /tests/i18n_sjis.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_sjis.at -------------------------------------------------------------------------------- /tests/i18n_sjis.src/data/in-sjis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_sjis.src/data/in-sjis.txt -------------------------------------------------------------------------------- /tests/i18n_sjis.src/data/in-utf8.txt: -------------------------------------------------------------------------------- 1 | 重工業 2 | 給水所 3 | 洗濯板滑走路 4 | -------------------------------------------------------------------------------- /tests/i18n_sjis.src/data/out-sjis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_sjis.src/data/out-sjis.txt -------------------------------------------------------------------------------- /tests/i18n_sjis.src/data/out-utf8.txt: -------------------------------------------------------------------------------- 1 | 日本語 2 | 山梨県 3 | 上中下 4 | 小学校 5 | 重工業 6 | 給水所 7 | 洗濯板 8 | -------------------------------------------------------------------------------- /tests/i18n_sjis.src/error-print.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_sjis.src/error-print.at -------------------------------------------------------------------------------- /tests/i18n_sjis.src/limits.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_sjis.src/limits.at -------------------------------------------------------------------------------- /tests/i18n_sjis.src/mb-space.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_sjis.src/mb-space.at -------------------------------------------------------------------------------- /tests/i18n_sjis.src/national.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_sjis.src/national.at -------------------------------------------------------------------------------- /tests/i18n_sjis.src/pic-n.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_sjis.src/pic-n.at -------------------------------------------------------------------------------- /tests/i18n_sjis.src/pic-x.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_sjis.src/pic-x.at -------------------------------------------------------------------------------- /tests/i18n_sjis.src/program-id.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_sjis.src/program-id.at -------------------------------------------------------------------------------- /tests/i18n_utf8.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_utf8.at -------------------------------------------------------------------------------- /tests/i18n_utf8.src/error-print.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_utf8.src/error-print.at -------------------------------------------------------------------------------- /tests/i18n_utf8.src/limits.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_utf8.src/limits.at -------------------------------------------------------------------------------- /tests/i18n_utf8.src/mb-space.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_utf8.src/mb-space.at -------------------------------------------------------------------------------- /tests/i18n_utf8.src/national.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_utf8.src/national.at -------------------------------------------------------------------------------- /tests/i18n_utf8.src/pic-bn.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_utf8.src/pic-bn.at -------------------------------------------------------------------------------- /tests/i18n_utf8.src/pic-n.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_utf8.src/pic-n.at -------------------------------------------------------------------------------- /tests/i18n_utf8.src/pic-x.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_utf8.src/pic-x.at -------------------------------------------------------------------------------- /tests/i18n_utf8.src/program-id.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/i18n_utf8.src/program-id.at -------------------------------------------------------------------------------- /tests/jp-compat.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.at -------------------------------------------------------------------------------- /tests/jp-compat.src/catch-exception.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/catch-exception.at -------------------------------------------------------------------------------- /tests/jp-compat.src/cob68-copy.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/cob68-copy.at -------------------------------------------------------------------------------- /tests/jp-compat.src/compat-check.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/compat-check.at -------------------------------------------------------------------------------- /tests/jp-compat.src/copy-joining.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/copy-joining.at -------------------------------------------------------------------------------- /tests/jp-compat.src/data-desc-no-dot.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/data-desc-no-dot.at -------------------------------------------------------------------------------- /tests/jp-compat.src/empty-imperative.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/empty-imperative.at -------------------------------------------------------------------------------- /tests/jp-compat.src/file-control.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/file-control.at -------------------------------------------------------------------------------- /tests/jp-compat.src/file-desc.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/file-desc.at -------------------------------------------------------------------------------- /tests/jp-compat.src/file-userfh.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/file-userfh.at -------------------------------------------------------------------------------- /tests/jp-compat.src/intr-funcs.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/intr-funcs.at -------------------------------------------------------------------------------- /tests/jp-compat.src/io-control.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/io-control.at -------------------------------------------------------------------------------- /tests/jp-compat.src/job-date.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/job-date.at -------------------------------------------------------------------------------- /tests/jp-compat.src/sort-key-is.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/sort-key-is.at -------------------------------------------------------------------------------- /tests/jp-compat.src/special-names.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/special-names.at -------------------------------------------------------------------------------- /tests/jp-compat.src/spl-registers.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/spl-registers.at -------------------------------------------------------------------------------- /tests/jp-compat.src/split-keys.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/split-keys.at -------------------------------------------------------------------------------- /tests/jp-compat.src/system-routine.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/system-routine.at -------------------------------------------------------------------------------- /tests/jp-compat.src/upsi-x.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/upsi-x.at -------------------------------------------------------------------------------- /tests/jp-compat.src/verbose-runtime.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/jp-compat.src/verbose-runtime.at -------------------------------------------------------------------------------- /tests/misc.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.at -------------------------------------------------------------------------------- /tests/misc.src/TEST_VAR_LENGTH.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/TEST_VAR_LENGTH.txt -------------------------------------------------------------------------------- /tests/misc.src/cancel-hyphen.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/cancel-hyphen.at -------------------------------------------------------------------------------- /tests/misc.src/comp-n.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/comp-n.at -------------------------------------------------------------------------------- /tests/misc.src/comp-overflow.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/comp-overflow.at -------------------------------------------------------------------------------- /tests/misc.src/comp1-comp2.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/comp1-comp2.at -------------------------------------------------------------------------------- /tests/misc.src/comp3-compute.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/comp3-compute.at -------------------------------------------------------------------------------- /tests/misc.src/comp3-int.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/comp3-int.at -------------------------------------------------------------------------------- /tests/misc.src/comp3-is-numeric.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/comp3-is-numeric.at -------------------------------------------------------------------------------- /tests/misc.src/comp3-overflow.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/comp3-overflow.at -------------------------------------------------------------------------------- /tests/misc.src/compare-9.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/compare-9.at -------------------------------------------------------------------------------- /tests/misc.src/compare-large-number.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/compare-large-number.at -------------------------------------------------------------------------------- /tests/misc.src/compare-national.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/compare-national.at -------------------------------------------------------------------------------- /tests/misc.src/convert-string-concat.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/convert-string-concat.at -------------------------------------------------------------------------------- /tests/misc.src/copy-comments.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/copy-comments.at -------------------------------------------------------------------------------- /tests/misc.src/current-date.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/current-date.at -------------------------------------------------------------------------------- /tests/misc.src/display-inspect-sign.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/display-inspect-sign.at -------------------------------------------------------------------------------- /tests/misc.src/display-numeric.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/display-numeric.at -------------------------------------------------------------------------------- /tests/misc.src/env.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/env.at -------------------------------------------------------------------------------- /tests/misc.src/evaluate-switch.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/evaluate-switch.at -------------------------------------------------------------------------------- /tests/misc.src/exit-perform-cycle.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/exit-perform-cycle.at -------------------------------------------------------------------------------- /tests/misc.src/exit-perform.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/exit-perform.at -------------------------------------------------------------------------------- /tests/misc.src/fd-external.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/fd-external.at -------------------------------------------------------------------------------- /tests/misc.src/file-handler-japanese.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/file-handler-japanese.at -------------------------------------------------------------------------------- /tests/misc.src/fix-subtract.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/fix-subtract.at -------------------------------------------------------------------------------- /tests/misc.src/fserial-variable.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/fserial-variable.at -------------------------------------------------------------------------------- /tests/misc.src/high-low-value.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/high-low-value.at -------------------------------------------------------------------------------- /tests/misc.src/index-comp.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/index-comp.at -------------------------------------------------------------------------------- /tests/misc.src/index-file-status.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/index-file-status.at -------------------------------------------------------------------------------- /tests/misc.src/java-interface.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/java-interface.at -------------------------------------------------------------------------------- /tests/misc.src/perform-until-div.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/perform-until-div.at -------------------------------------------------------------------------------- /tests/misc.src/read_prev_after_start.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/read_prev_after_start.at -------------------------------------------------------------------------------- /tests/misc.src/signed-comp3.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/signed-comp3.at -------------------------------------------------------------------------------- /tests/misc.src/string-call-parameter.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/string-call-parameter.at -------------------------------------------------------------------------------- /tests/misc.src/variable-length-file.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/misc.src/variable-length-file.at -------------------------------------------------------------------------------- /tests/package.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/package.m4 -------------------------------------------------------------------------------- /tests/run-O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run-O -------------------------------------------------------------------------------- /tests/run.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.at -------------------------------------------------------------------------------- /tests/run.src/accept.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.src/accept.at -------------------------------------------------------------------------------- /tests/run.src/extensions.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.src/extensions.at -------------------------------------------------------------------------------- /tests/run.src/functions.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.src/functions.at -------------------------------------------------------------------------------- /tests/run.src/fundamental.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.src/fundamental.at -------------------------------------------------------------------------------- /tests/run.src/initialize.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.src/initialize.at -------------------------------------------------------------------------------- /tests/run.src/miscellaneous.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.src/miscellaneous.at -------------------------------------------------------------------------------- /tests/run.src/ref-mod.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.src/ref-mod.at -------------------------------------------------------------------------------- /tests/run.src/return-code.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.src/return-code.at -------------------------------------------------------------------------------- /tests/run.src/subscripts.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.src/subscripts.at -------------------------------------------------------------------------------- /tests/run.src/system-routines.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/run.src/system-routines.at -------------------------------------------------------------------------------- /tests/syntax.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.at -------------------------------------------------------------------------------- /tests/syntax.src/assign-external.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/assign-external.at -------------------------------------------------------------------------------- /tests/syntax.src/copy.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/copy.at -------------------------------------------------------------------------------- /tests/syntax.src/data-records.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/data-records.at -------------------------------------------------------------------------------- /tests/syntax.src/definition.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/definition.at -------------------------------------------------------------------------------- /tests/syntax.src/error-recovery.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/error-recovery.at -------------------------------------------------------------------------------- /tests/syntax.src/expression.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/expression.at -------------------------------------------------------------------------------- /tests/syntax.src/free-1col-aster.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/free-1col-aster.at -------------------------------------------------------------------------------- /tests/syntax.src/indicator.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/indicator.at -------------------------------------------------------------------------------- /tests/syntax.src/move.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/move.at -------------------------------------------------------------------------------- /tests/syntax.src/multiply.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/multiply.at -------------------------------------------------------------------------------- /tests/syntax.src/occurs.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/occurs.at -------------------------------------------------------------------------------- /tests/syntax.src/redefines.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/redefines.at -------------------------------------------------------------------------------- /tests/syntax.src/set.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/set.at -------------------------------------------------------------------------------- /tests/syntax.src/subscripts.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/subscripts.at -------------------------------------------------------------------------------- /tests/syntax.src/unmatured-copy.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/unmatured-copy.at -------------------------------------------------------------------------------- /tests/syntax.src/value.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/tests/syntax.src/value.at -------------------------------------------------------------------------------- /update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/update-version.sh -------------------------------------------------------------------------------- /win/cobj/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/win/cobj/PropertySheet.props -------------------------------------------------------------------------------- /win/cobj/cobj.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/win/cobj/cobj.vcxproj -------------------------------------------------------------------------------- /win/cobj/cobj.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/win/cobj/cobj.vcxproj.filters -------------------------------------------------------------------------------- /win/cobj/cobj.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/win/cobj/cobj.vcxproj.user -------------------------------------------------------------------------------- /win/cobj/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/win/cobj/packages.config -------------------------------------------------------------------------------- /win/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/win/config.h -------------------------------------------------------------------------------- /win/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/win/defaults.h -------------------------------------------------------------------------------- /win/make-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/win/make-install.ps1 -------------------------------------------------------------------------------- /win/make-test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/win/make-test.ps1 -------------------------------------------------------------------------------- /win/opensourcecobol4j.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/opensourcecobol4j/HEAD/win/opensourcecobol4j.sln --------------------------------------------------------------------------------