24 #ifndef SYSLOG_NG_C_LITERAL_UNESCAPE_H_INCLUDED
25 #define SYSLOG_NG_C_LITERAL_UNESCAPE_H_INCLUDED
29 typedef gboolean (*
MatchDelimiterFunc)(
const gchar *cur,
const gchar **new_cur, gpointer user_data);
31 typedef struct _StrReprDecodeOptions
35 gchar delimiter_chars[3];
gboolean(* MatchDelimiterFunc)(const gchar *cur, const gchar **new_cur, gpointer user_data)
Definition: decode.h:29
gboolean str_repr_decode_with_options(GString *value, const gchar *input, const gchar **end, const StrReprDecodeOptions *options)
Definition: decode.c:277
gboolean str_repr_decode_append(GString *value, const gchar *input, const gchar **end)
Definition: decode.c:259
gboolean str_repr_decode(GString *value, const gchar *input, const gchar **end)
Definition: decode.c:270
gboolean str_repr_decode_append_with_options(GString *value, const gchar *input, const gchar **end, const StrReprDecodeOptions *options)
Definition: decode.c:234
gpointer match_delimiter_data
Definition: decode.h:34
MatchDelimiterFunc match_delimiter
Definition: decode.h:33
GString * value
Definition: test_decode.c:28