File: BLBoxLib_F.f

package info (click to toggle)
ccseapps 2.5-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 16,812 kB
  • sloc: cpp: 117,349; fortran: 86,921; ansic: 13,083; sh: 633; perl: 492; makefile: 110; csh: 56
file content (27 lines) | stat: -rw-r--r-- 859 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
c-----------------------------------------------------------------------
      subroutine bl_error(str)
      character*(*) str
      integer NSTR
      parameter (NSTR = 128)
      integer istr(NSTR)
      call blstr2int(istr, NSTR, str)
      call bl_error_cpp(istr, NSTR)
      end
c-----------------------------------------------------------------------
      subroutine bl_warning(str)
      character*(*) str
      integer NSTR
      parameter (NSTR = 128)
      integer istr(NSTR)
      call blstr2int(istr, NSTR, str)
      call bl_warning_cpp(istr, NSTR)
      end
c-----------------------------------------------------------------------
      subroutine bl_abort(str)
      character*(*) str
      integer NSTR
      parameter (NSTR = 128)
      integer istr(NSTR)
      call blstr2int(istr, NSTR, str)
      call bl_abort_cpp(istr, NSTR)
      end