C.2 Shell_Utils Module Code Listing

The main documentation of the Shell_Utils Module contains additional explanation of this code listing.

!
! Author: Michael L. Hall
!         P.O. Box 1663, MS-D409, LANL
!         Los Alamos, NM 87545
!         ph: 505-665-4312
!         email: Hall@LANL.gov
! 
! Created on: 04/19/01
! CVS Info:   $Id: shell_utils.F90,v 1.5 2005/01/27 16:42:40 hall Exp $

module Caesar_Shell_Utils_Module

  ! Global use associations.

  use Caesar_Intrinsics_Module

  ! Start up with everything untyped and private.

  implicit none
  private

  ! Public procedures.

  public :: Basename, Dirname

  interface Basename
    module procedure Basename_Shell_Utils
  end interface

  interface Dirname
    module procedure Dirname_Shell_Utils
  end interface

contains

The Shell_Utils Module contains the following routines which are listed in separate sections:

* Basename_Shell_Utils
* Dirname_Shell_Utils

end module Caesar_Shell_Utils_Module



Subsections

Michael L. Hall