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.
 
 
 
 
 
 

35 lines
1.1 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 FFADDV (IRANGE, LINE)
C=======================================================================
C --*** FFADDV *** (FFLIB) Add integer range to line
C -- Written by Amy Gilkey - revised 11/16/87
C --
C --FFADDV adds an integer range (as a character string) to a line.
C --
C --Parameters:
C -- IRANGE - IN - the integer range to add;
C -- IRANGE(1) TO IRANGE(2) BY IRANGE(3)
C -- LINE - IN/OUT - the line being built
INTEGER IRANGE(3)
CHARACTER*(*) LINE
CALL FFADDI (IRANGE(1), LINE)
IF (IRANGE(2) .NE. IRANGE(1)) THEN
CALL FFADDC ('TO', LINE)
CALL FFADDI (IRANGE(2), LINE)
END IF
IF (IRANGE(3) .NE. 1) THEN
CALL FFADDC ('BY', LINE)
CALL FFADDI (IRANGE(3), LINE)
END IF
RETURN
END