view src/lib/test-crc32.c @ 22636:96e51a11c0aa

lib: Implement t_strsplit_tabescaped_inplace() This is a more efficient version of t_strsplit_tabescaped(), which modifies the input string instead of duplicating it.
author Timo Sirainen <timo.sirainen@dovecot.fi>
date Sat, 04 Nov 2017 01:39:38 +0200
parents 2e2563132d5f
children cb108f786fb4
line wrap: on
line source

/* Copyright (c) 2010-2017 Dovecot authors, see the included COPYING file */

#include "test-lib.h"
#include "crc32.h"

void test_crc32(void)
{
	const char str[] = "foo\0bar";

	test_begin("crc32");
	test_assert(crc32_str(str) == 0x8c736521);
	test_assert(crc32_data(str, sizeof(str)) == 0x32c9723d);
	test_end();
}