commit 571fbcc794dff526ec871ee938eddd0917a0c3d9
parent ce546b01ca8a96984661cebd616d87662cb389dc
Author: Sebastian <sebastian@sebsite.pw>
Date: Wed, 2 Mar 2022 22:47:46 -0500
ascii: wrap isgraph doc comment at 80 columns
Signed-off-by: Sebastian <sebastian@sebsite.pw>
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/ascii/ctype.ha b/ascii/ctype.ha
@@ -68,7 +68,8 @@ export fn isalnum(c: rune) bool =
export fn isprint(c: rune) bool =
if (!isascii(c)) false else cclass[c: u32]&(P|U|L|N|B) > 0;
-// Returns true if an ASCII character is any printable character other than space.
+// Returns true if an ASCII character is any printable character other than
+// space.
export fn isgraph(c: rune) bool =
if (!isascii(c)) false else cclass[c: u32]&(P|U|L|N) > 0;