system_ischr Function

public impure elemental function system_ischr(pathname)

NAME

system_ischr(3f) - [M_system:QUERY_FILE] checks if argument is a
                   character device
(LICENSE:PD)

SYNOPSIS

elemental impure logical function system_ischr(pathname)

character(len=*),intent(in) :: pathname
logical                     :: system_ischr

DESCRIPTION

    The ischr(3f) function checks if path is a path to a character
    device.

OPTIONS

    path   a character string representing a character device
           pathname. Trailing spaces are ignored.

RETURN VALUE

    The system_ischr() function should always be successful and no
    return value is reserved to indicate an error.

ERRORS

    No errors are defined.

SEE ALSO

system_isreg(3f), system_stat(3f), system_isdir(3f), system_perm(3f)

EXAMPLE

check if filename is a character file

program demo_system_ischr
use M_system, only : system_ischr
implicit none
integer                     :: i
character(len=80),parameter :: names(*)=[ &
'/tmp            ', &
'/tmp/NOTTHERE   ', &
'/usr/local      ', &
'.               ', &
'char_dev.test   ', &
'PROBABLY_NOT    ']
do i=1,size(names)
   write(*,*)' is ',                   &
            & trim(names(i)),          &
            & ' a character device? ', &
            & system_ischr(names(i))
enddo
end program demo_system_ischr

Results:

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: pathname

Return Value logical


Contents

Source Code


Source Code

elemental impure function system_ischr(pathname)
implicit none

! ident_6="@(#) M_system system_ischr(3f) determine if pathname is a link"

character(len=*),intent(in) :: pathname
logical                     :: system_ischr
character(kind=c_char,len=1),allocatable :: temp(:)

interface
  function c_ischr(pathname) bind (C,name="my_ischr") result (c_ierr)
  import c_char,c_int
  character(kind=c_char,len=1),intent(in) :: pathname(*)
  integer(kind=c_int)                     :: c_ierr
  end function c_ischr
end interface

   temp = str2_carr(trim(pathname)) ! kludge for bug in ifort (IFORT) 2021.3.0 20210609
   if(c_ischr(temp).eq.1)then
      system_ischr=.true.
   else
      system_ischr=.false.
   endif

end function system_ischr