Whats unique about FOR_C?
• FOR_C was the first FORTRAN to C translator to generate C prototypes from the original FORTRAN, permitting FORTRAN argument checking, and determining which user function arguments could be passed by value (versus address). This resulted in greatly simplified function call translations, which are much easier to maintain. • FOR_C was the first FORTRAN to C translator to pass intrinsic functions by value rather than address. This results in faster code – and permits calls directly to the standard C library (rather than an intermediate function which, in turn, calls the C library function using the normal pass by value). • Similarly, FOR_C was the first to translate statement functions using pass by value for scalar arguments, for simpler, easier to maintain code. • FOR_C was the first FORTRAN to C translator to generate optional translation to standard C fprintf() and fscanf() functions from F77 formatted WRITEs and READs. It was also the first to translate list directed WRITEs into fpr