File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,6 @@ pure logical function is_control(c)
98
98
pure logical function is_digit(c)
99
99
character (len= 1 ), intent (in ) :: c ! ! The character to test.
100
100
integer :: ic
101
- ic = iachar (c)
102
101
is_digit = (iachar (' 0' ) <= ic) .and. (ic <= iachar (' 9' ))
103
102
end function
104
103
@@ -111,7 +110,7 @@ pure logical function is_octal_digit(c)
111
110
end function
112
111
113
112
! > Checks whether `c` is a digit in base 16 (0 .. 9, A .. F, a .. f).
114
- pure logical function is_hex_digit(c )
113
+ pure logical function is_hex_digit(cin )
115
114
character (len= 1 ), intent (in ) :: c ! ! The character to test.
116
115
integer :: ic
117
116
ic = iachar (c)
@@ -149,7 +148,7 @@ pure logical function is_printable(c)
149
148
end function
150
149
151
150
! > Checks whether `c` is a lowercase ASCII letter (a .. z).
152
- pure logical function is_lower(c )
151
+ pure logical function is_lower(cin )
153
152
character (len= 1 ), intent (in ) :: c ! ! The character to test.
154
153
is_lower = (c >= ' a' ) .and. (c <= ' z' )
155
154
end function
You can’t perform that action at this time.
0 commit comments