aboutsummaryrefslogtreecommitdiffstats
path: root/src/string_utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/string_utils.h')
-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)
{