aboutsummaryrefslogtreecommitdiff
path: root/Blankstring.f
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-08-03 14:41:53 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-08-03 14:41:53 -0400
commitaf8fa097905186e0d8ba257e4d70d63fe8901264 (patch)
tree647de7ddd01c750e9a80849b3cf79efddf32d4b2 /Blankstring.f
downloadmoog-af8fa097905186e0d8ba257e4d70d63fe8901264.tar.gz
Initial commit
Diffstat (limited to 'Blankstring.f')
-rwxr-xr-xBlankstring.f18
1 files changed, 18 insertions, 0 deletions
diff --git a/Blankstring.f b/Blankstring.f
new file mode 100755
index 0000000..57cf62b
--- /dev/null
+++ b/Blankstring.f
@@ -0,0 +1,18 @@
+
+c***********************************************************************
+ subroutine blankstring (string)
+c***********************************************************************
+c this routine simply makes an 80-character string all blanks
+
+ implicit real*8 (a-h,o-z)
+ character*80 string
+
+
+ do i=1,80
+ string(i:i) = ' '
+ enddo
+ return
+
+
+ end
+