c
c Routine directly callable from C/C++ (it could be necessary to
c append an underscore, "_", to its name depending on the C/C++
c compiler used).
c
c
subroutine versionint2str(intversion, strversion, strlen)
c
c Converting a version in integer format to string format.
c
c Version strings will be formatted as follows:
c
c nn.mm.llx
c
c where nn, mm and ll are integers and x is an optional letter.
c
c
c Written by: S. J. Sciutto, La Plata 2019.
c
c
c Arguments:
c =========
c
c intversion...... (input, integer) The version to convert.
c strversion...... (output, character*(*)) The version in string
c format. The length of this argument must be
c at least 9.
c strlen.......... (output, integer) Length of strversion. If
c intversion does not correspond to a valid
c version, then strlen will not be positive.
c
c
c<--->
|
These pages are maintained by Sergio J. Sciutto |
Back to AIRES library index |
| Back to AIRES home |