aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-02-05 16:28:35 -0500
committerDavid Robillard <d@drobilla.net>2023-02-05 16:28:35 -0500
commit324fc75eb5dd1cf2b7b2d8c62071253df3985b76 (patch)
treea5ded9f7145d0bd12c41310234833f9f8cec2e65
parente219cb0cf607f6c9e59246db1dbe6e7621a7ad8e (diff)
downloadserd-324fc75eb5dd1cf2b7b2d8c62071253df3985b76.tar.gz
serd-324fc75eb5dd1cf2b7b2d8c62071253df3985b76.tar.bz2
serd-324fc75eb5dd1cf2b7b2d8c62071253df3985b76.zip
Fix inconsistent comment style
-rw-r--r--src/string_utils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/string_utils.h b/src/string_utils.h
index 2fcfadac..e3a575f3 100644
--- a/src/string_utils.h
+++ b/src/string_utils.h
@@ -34,14 +34,14 @@ is_digit(const int c)
return in_range(c, '0', '9');
}
-/* RFC2234: HEXDIG ::= DIGIT / "A" / "B" / "C" / "D" / "E" / "F" */
+/** RFC2234: HEXDIG ::= DIGIT / "A" / "B" / "C" / "D" / "E" / "F" */
static inline bool
is_hexdig(const int c)
{
return is_digit(c) || in_range(c, 'A', 'F');
}
-/* Turtle / JSON / C: XDIGIT ::= DIGIT / A-F / a-f */
+/** Turtle / JSON / C: XDIGIT ::= DIGIT / A-F / a-f */
static inline bool
is_xdigit(const int c)
{