summaryrefslogtreecommitdiff
path: root/src/utils/string.h
blob: d6bfe425042afc86ab7e37b9dee2cf8850944f9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * This file is part of Hubbub.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2008 Andrew Sidwell
 */

#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);
bool hubbub_string_match(const uint8_t *a, size_t a_len,
		const uint8_t *b, size_t b_len);

#endif