aboutsummaryrefslogtreecommitdiff
path: root/src/cctk_Version.F90
blob: 4f2befcaf642d51551b14c6a452022a3cb79ebe8 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include "cctk.h"

module cctk_Version
  implicit none

  interface
     
     subroutine CCTK_FullVersion (string, string_length)
       implicit none
       character(*) string
       integer      string_length
     end subroutine CCTK_FullVersion
     
     subroutine CCTK_MajorVersion (string, string_length)
       implicit none
       character(*) string
       integer      string_length
     end subroutine CCTK_MajorVersion
     
     subroutine CCTK_MinorVersion (string, string_length)
       implicit none
       character(*) string
       integer      string_length
     end subroutine CCTK_MinorVersion
     
     subroutine CCTK_MicroVersion (string, string_length)
       implicit none
       character(*) string
       integer      string_length
     end subroutine CCTK_MicroVersion
     
     subroutine CCTKi_DateStamp (string, string_length)
       implicit none
       character(*) string
       integer      string_length
     end subroutine CCTKi_DateStamp
     
     subroutine CCTK_CompileTime (string, string_length)
       implicit none
       character(*) string
       integer      string_length
     end subroutine CCTK_CompileTime
     
     subroutine CCTKi_CompileDate (string, string_length)
       implicit none
       character(*) string
       integer      string_length
     end subroutine CCTKi_CompileDate
     
     subroutine CCTKi_CompileUser (string, string_length)
       implicit none
       character(*) string
       integer      string_length
     end subroutine CCTKi_CompileUser
     
     subroutine CCTKi_RunUser (string, string_length)
       implicit none
       character(*) string
       integer      string_length
     end subroutine CCTKi_RunUser
     
  end interface
  
end module cctk_Version