Hubbub $Id$
string.h
Go to the documentation of this file.
1/*
2 * This file is part of Hubbub.
3 * Licensed under the MIT License,
4 * http://www.opensource.org/licenses/mit-license.php
5 * Copyright 2008 Andrew Sidwell
6 */
7
8#ifndef hubbub_string_h_
9#define hubbub_string_h_
10
12bool hubbub_string_match(const uint8_t *a, size_t a_len,
13 const uint8_t *b, size_t b_len);
14
16bool hubbub_string_match_ci(const uint8_t *a, size_t a_len,
17 const uint8_t *b, size_t b_len);
18
19#endif
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.
Definition: string.c:23
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.
Definition: string.c:40