comparison src/lib/strescape.h @ 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
comparison
equal deleted inserted replaced
902:5043e48c022f 903:fd8888f6f037
5 5
6 /* escape all '\' and '"' characters */ 6 /* escape all '\' and '"' characters */
7 const char *str_escape(const char *str); 7 const char *str_escape(const char *str);
8 8
9 /* remove all '\' characters, append to given string */ 9 /* remove all '\' characters, append to given string */
10 void str_append_unescaped(String *dest, const void *src, size_t src_size); 10 void str_append_unescaped(string_t *dest, const void *src, size_t src_size);
11 11
12 /* remove all '\' characters */ 12 /* remove all '\' characters */
13 void str_unescape(char *str); 13 void str_unescape(char *str);
14 14
15 #endif 15 #endif