summaryrefslogtreecommitdiff
path: root/src/utils/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/string.h')
-rw-r--r--src/utils/string.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/string.h b/src/utils/string.h
index cb65493..2487428 100644
--- a/src/utils/string.h
+++ b/src/utils/string.h
@@ -8,11 +8,11 @@
#ifndef hubbub_string_h_
#define hubbub_string_h_
-bool hubbub_string_starts(const uint8_t *a, size_t a_len,
- const uint8_t *b, size_t b_len);
+/** Match two strings case-sensitively */
bool hubbub_string_match(const uint8_t *a, size_t a_len,
const uint8_t *b, size_t b_len);
+/** Match two strings case-insensitively */
bool hubbub_string_match_ci(const uint8_t *a, size_t a_len,
const uint8_t *b, size_t b_len);