| Author(s): J. Zoll, P. Rastl | Library: KERNLIB |
| Submitter: | Submitted: 21.09.1971 |
| Language: Fortran or Assembler | Revised: 16.09.1991 |
UOPTC and UOPT compare a string of actual option-characters against a similar string of possible option-characters filling an INTEGER vector with 1's and 0's, indicating for each possible option whether or not it was taken.
Structure:
SUBROUTINE subprogram
User Entry Names: UOPTC, UOPT
Usage:
CALL UOPTC(CHACT,CHPOSS,IOPT)
CALL UOPT(IACT,IPOSS,IOPT,N)
Examples:
CALL UOPTC('+AB','ABC+/Y',IOPT)
CALL UOPT (4H+AB.,6HABC+/Y,IOPT,6)
will set the first 6 elements of IOPT to 1,1,0,1,0,0.
Notes:
UOPT was written for Fortran 4 and should no longer
be used for new programs.