You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lighttpd2/include/lighttpd/encoding.h

19 lines
552 B
C

#ifndef _LIGHTTPD_ENCODING_H_
#define _LIGHTTPD_ENCODING_H_
#ifndef _LIGHTTPD_BASE_H_
#error Please include <lighttpd/base.h> instead of this file
#endif
typedef enum {
ENCODING_HEX, /* a => 61 */
ENCODING_HTML, /* HTML special chars. & => &amp; e.g. */
ENCODING_URI /* relative URI */
} encoding_t;
/* encodes special characters in a string and returns the new string */
GString *string_encode_append(const gchar *str, GString *dest, encoding_t encoding);
GString *string_encode(const gchar *str, GString *dest, encoding_t encoding);
#endif