This directory contains code which is using external functions (related currently to SARC and ZTRANS) which will be linked to the code produced by NAPA thanks to specific intructions in the batch files Example: the function "ask4sarc(void)" was conditionnaly placed by the NAPA compiler in the C code to be detected here searching in the ".o" file for the string "ask4sarc" existing only if a sarc function is present in the C file being compiled. ... rem %TARG% is defined in file /Simulate/InstallDos/PROFILE/MyInit.bat' rem %3 is a parameter of the batch file indicating the SARC directory find "ask4sarc" %1.o >> NUL if %ERRORLEVEL%==0 goto LINK2 :LINK1 rem linking without the SARC engine gcc -s -%TARG% -Wall -static -ansi -std=c2x -o %1.exe %1.o goto END :LINK2 rem linking -with- the SARC engine gcc -s -%TARG% -Wall -static -ansi -std=c2x -o %1.exe %1.o -static SARCDIR/OFile/SARC_api.o SARCDIR/OFile/SARC_matlib.o -lstdC++ goto END ...