diff src/lib/strescape.c @ 903:fd8888f6f037 HEAD

Naming style changes, finally got tired of most of the typedefs. Also the previous enum -> macro change reverted so that we don't use the highest bit anymore, that's incompatible with old indexes so they will be rebuilt.
author Timo Sirainen <tss@iki.fi>
date Sun, 05 Jan 2003 15:09:51 +0200
parents 0d5be52d7131
children 3784730cfcd8
line wrap: on
line diff
--- a/src/lib/strescape.c	Sun Jan 05 11:23:13 2003 +0200
+++ b/src/lib/strescape.c	Sun Jan 05 15:09:51 2003 +0200
@@ -51,7 +51,7 @@
 	return ret;
 }
 
-void str_append_unescaped(String *dest, const void *src, size_t src_size)
+void str_append_unescaped(string_t *dest, const void *src, size_t src_size)
 {
 	const unsigned char *src_c = src;
 	size_t start = 0, i = 0;