summaryrefslogtreecommitdiff
path: root/src/utils/string.h
diff options
context:
space:
mode:
authorAndrew Sidwell <andy@entai.co.uk>2008-08-11 02:57:54 +0000
committerAndrew Sidwell <andy@entai.co.uk>2008-08-11 02:57:54 +0000
commit75b2ff1216892032277367725c2be0b037cbc257 (patch)
treeda0828cdfc0ca4e04ac091605896fa99607d6bf2 /src/utils/string.h
parente77edf053af3932acc370d66716ad3a41e96dda5 (diff)
downloadlibhubbub-75b2ff1216892032277367725c2be0b037cbc257.tar.gz
libhubbub-75b2ff1216892032277367725c2be0b037cbc257.tar.bz2
- Remove an unused function from utils/string.c
- Remove the no-op FINISH() macro from the tokeniser - Fix a typo in the charset detector svn path=/trunk/hubbub/; revision=5007
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);