Intel® Fortran Compiler

Developer Guide and Reference

ID 767251
Date 3/31/2025
Public
Document Table of Contents

GETENV

Portability Subroutine: Returns the value of an environment variable.

Module

USE IFPORT

CALL GETENV (ename,evalue)

ename

(Input) Character*(*). Environment variable to search for.

evalue

(Output) Character*(*). Value found for ename. Blank if ename is not found.

Example

use IFPORT character*40 libname CALL GETENV ("LIB",libname) TYPE *, "The LIB variable points to ",libname

See Also