claws-mail/src/quote_fmt.h
Christoph Hohmann ff0896b7ef * src/Makefile.am
added quote_fmt.c
* src/prefs_common.[ch]
* src/prefs_template.c
* src/quote_fmt.c               *** NEW FILE ***
* src/quote_fmt.h
        move quote format symbol description code
        to it's own file because it is used from
        differnent code parts
        Rewrote symbol description GUI
          + use table
          + add separators
          + get data from array (no more long constant strings)
* src/quote_fmt_lex.l
* src/quote_fmt_parse.y
        Symbol for Literal % changed to \% instead of %%
        (More logical as \ is used for quoting for other symbols)
        Add |f and |p to include files and program output
        Examples:
            |f{/home/.../.signature}
            |p{date}
* po/de.po
        Correct wrong spelling for "Referenzen"
2002-02-22 03:08:20 +00:00

15 lines
360 B
C

#ifndef __QUOTE_FMT_H__
#define __QUOTE_FMT_H__
#define quote_fmt_parse quote_fmtparse
void quote_fmt_quote_description(void);
gchar *quote_fmt_get_buffer(void);
void quote_fmt_init(MsgInfo *info, const gchar *my_quote_str,
const gchar *my_body);
gint quote_fmtparse(void);
void quote_fmt_scan_string(const gchar *str);
#endif /* __QUOTE_FMT_H__ */