summaryrefslogtreecommitdiff
path: root/src/utils/string.c
blob: ce4f6a66e2fa6dcaf65833c26ac6de91c36283d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * This file is part of Hubbub.
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 * Copyright 2008 Andrew Sidwell
 */

#include <stddef.h>
#include <inttypes.h>
#include <stdbool.h>
#include <string.h>
#include "utils/string.h"


/**
 * Check that one string is exactly equal to another
 *
 * \param a	String to compare
 * \param a_len	Length of first string
 * \param b	String to compare
 * \param b_len	Length of second string
 */
bool hubbub_string_match(const uint8_t *a, size_t a_len,
		const uint8_t *b, size_t b_len)
{
	if (a_len != b_len)
		return false;

	return memcmp((const char *) a, (const char *) b, b_len) == 0;
}

/**
 * Check that one string is case-insensitively equal to another
 *
 * \param a	String to compare
 * \param a_len	Length of first string
 * \param b	String to compare
 * \param 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)
{
	if (a_len != b_len)
		return false;

	while (b_len-- > 0) {
		uint8_t aa = *(a++);
		uint8_t bb = *(b++);

		aa = ('a' <= aa && aa <= 'z') ? (aa - 0x20) : aa; 
		bb = ('a' <= bb && bb <= 'z') ? (bb - 0x20) : bb;

		if (aa != bb)
			return false;
	}

	return true;
}