view src/ploki/strutil.c @ 8427:1fc808cd5b1f

<b_jonas> learn can\'t is the most frequent word whose pronunciation varies between /\xc9\x91\xcb\x90/ and /\xc3\xa6/ depending on dialect. The list is: advance after answer ask aunt brass can\'t cast castle chance class command dance demand draft enhance example fast father glass graph grass half last laugh mask master nasty pass past path plant rather sample shan\'t staff task vast
author HackBot
date Thu, 09 Jun 2016 21:28:47 +0000
parents ac0403686959
children
line wrap: on
line source

#include "strutil.h"

#include <string.h>

/* FYI: This is the "One-at-a-Time" algorithm by Bob Jenkins
 * from requirements by Colin Plumb.
 * (http://burtleburtle.net/bob/hash/doobs.html) */
size_t u_hash(const char *s, size_t l, size_t h) {
	size_t i;

	for (i = 0; i < l; ++i) {
		h += (unsigned char)s[i];
		h += h << 10;
		h ^= h >> 6;
	}
	h += h << 3;
	h ^= h >> 11;
	h += h << 15;

	return h;
}

int u_cmp(const char *as, size_t al, const char *bs, size_t bl) {
	int tmp;
	if (as == bs && al == bl)
		return 0;
	if ((tmp = memcmp(as, bs, al < bl ? al : bl)))
		return tmp;
	if (al < bl)
		return -1;
	if (al > bl)
		return 1;
	return 0;
}