Hubbub $Id$
|
Functions | |
bool | hubbub_string_match (const uint8_t *a, size_t a_len, const uint8_t *b, size_t b_len) |
Check that one string is exactly equal to another. More... | |
bool | hubbub_string_match_ci (const uint8_t *a, size_t a_len, const uint8_t *b, size_t b_len) |
Check that one string is case-insensitively equal to another. More... | |
bool hubbub_string_match | ( | const uint8_t * | a, |
size_t | a_len, | ||
const uint8_t * | b, | ||
size_t | b_len | ||
) |
Check that one string is exactly equal to another.
Match two strings case-sensitively.
a | String to compare |
a_len | Length of first string |
b | String to compare |
b_len | Length of second string |
bool hubbub_string_match_ci | ( | const uint8_t * | a, |
size_t | a_len, | ||
const uint8_t * | b, | ||
size_t | b_len | ||
) |
Check that one string is case-insensitively equal to another.
Match two strings case-insensitively.
a | String to compare |
a_len | Length of first string |
b | String to compare |
b_len | Length of second string |