ITM AMNS: User Interface  \$Id: Doxyfile 502 2015-10-15 12:23:45Z dpc $
amns_utility.F90
Go to the documentation of this file.
1 
9 
11 
12  use amns_types
13 
14  interface string
15 
16  module procedure int_to_string
17 
18  end interface string
19 
20 contains
21 
25  character*24 function int_to_string(int)
26  integer, intent(in) :: int
27  write(int_to_string,'(I24)') int
29  end function
30 
31 end module amns_utility
character *24 function int_to_string(int)
convert an integer to a string
Module implementing various utility functions for the AMNS interface.
The derived types defined here are meant to be interoperable with C. The ones for this is not the cas...
Definition: amns_types.F90:17