Skip to content
Snippets Groups Projects
Commit a106ce9c authored by RODIER Quentin's avatar RODIER Quentin
Browse files

Quentin 21/01/2022: bugfix last commit, mode_tools already exists in tools.F90

parent ccdd712d
No related branches found
No related tags found
No related merge requests found
MODULE MODE_TOOLS
IMPLICIT NONE
CONTAINS
LOGICAL FUNCTION LNORTH_ll()
LNORTH_ll=.FALSE.
END FUNCTION LNORTH_ll
!
LOGICAL FUNCTION LEAST_ll()
LEAST_ll=.FALSE.
END FUNCTION LEAST_ll
!
LOGICAL FUNCTION LWEST_ll()
LWEST_ll=.FALSE.
END FUNCTION LWEST_ll
!
LOGICAL FUNCTION LSOUTH_ll()
LSOUTH_ll=.FALSE.
END FUNCTION LSOUTH_ll
END MODULE MODE_TOOLS
...@@ -136,4 +136,20 @@ function Upcase(hstring) ...@@ -136,4 +136,20 @@ function Upcase(hstring)
end do end do
end function Upcase end function Upcase
LOGICAL FUNCTION LNORTH_ll()
LNORTH_ll=.FALSE.
END FUNCTION LNORTH_ll
!
LOGICAL FUNCTION LEAST_ll()
LEAST_ll=.FALSE.
END FUNCTION LEAST_ll
!
LOGICAL FUNCTION LWEST_ll()
LWEST_ll=.FALSE.
END FUNCTION LWEST_ll
!
LOGICAL FUNCTION LSOUTH_ll()
LSOUTH_ll=.FALSE.
END FUNCTION LSOUTH_ll
end module mode_tools end module mode_tools
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment