Hubbub
|
Go to the source code of this file.
Functions | |
bool | hubbub_string_match (const uint8_t *a, size_t a_len, const uint8_t *b, size_t b_len) |
Match two strings case-sensitively. More... | |
bool | hubbub_string_match_ci (const uint8_t *a, size_t a_len, const uint8_t *b, size_t b_len) |
Match two strings case-insensitively. More... | |
bool hubbub_string_match | ( | const uint8_t * | a, |
size_t | a_len, | ||
const uint8_t * | b, | ||
size_t | b_len | ||
) |
Match two strings case-sensitively.
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 |
Definition at line 23 of file string.c.
Referenced by adjust_foreign_attributes(), adjust_mathml_attributes(), adjust_svg_attributes(), adjust_svg_tagname(), handle_in_foreign_content(), and process_meta_in_head().
bool hubbub_string_match_ci | ( | const uint8_t * | a, |
size_t | a_len, | ||
const uint8_t * | b, | ||
size_t | b_len | ||
) |
Match two strings case-insensitively.
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 |
Definition at line 40 of file string.c.
Referenced by lookup_full_quirks(), process_input_in_table(), and starts_with().