Cloned SEACAS for EXODUS library with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
1.6 KiB

C Copyright(C) 1999-2020 National Technology & Engineering Solutions
C of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
C NTESS, the U.S. Government retains certain rights in this software.
C
C See packages/seacas/LICENSE for details
C=======================================================================
SUBROUTINE FFONOF (IFLD, INTYP, CFIELD, ISON, *)
C=======================================================================
C --*** FFONOF *** (FFLIB) Parse free-field ON/OFF
C -- Written by Amy Gilkey - revised 02/24/86
C --
C --FFONOF parses an on/off option from an input field. No field is
C --assumed 'ON'.
C --
C --Parameters:
C -- IFLD - IN/OUT - the index of the current field number, incremented
C -- INTYP - IN - the input type from the free-field reader
C -- CFIELD - IN - the input option string
C -- ISON - OUT - true iff the option is ON, set only if no error
C -- * - return statement if the field is invalid; message is printed
INTEGER IFLD
INTEGER INTYP(*)
CHARACTER*(*) CFIELD(*)
LOGICAL ISON
CHARACTER*4 OPT
IF (INTYP(IFLD) .EQ. 0) THEN
OPT = CFIELD(IFLD)
ELSE IF (INTYP(IFLD) .LE. -1) THEN
OPT = 'ON'
ELSE
OPT = ' '
END IF
IF ((OPT(:2) .NE. 'ON') .AND. (OPT(:3) .NE. 'OFF')) THEN
CALL PRTERR ('CMDERR', 'Expected "ON" or "OFF"')
GOTO 100
END IF
ISON = (OPT(:2) .EQ. 'ON')
IF (INTYP(IFLD) .GE. -1) IFLD = IFLD + 1
RETURN
100 CONTINUE
IF (INTYP(IFLD) .GE. -1) IFLD = IFLD + 1
RETURN 1
END