* (quote) utf8 actually works now
[modest] / src / modest-text-utils.h
1 /* modest-text-utils.h */
2 /* insert (c)/licensing information) */
3
4 #ifndef __MODEST_TEXT_UTILS_H__
5 #define __MODEST_TEXT_UTILS_H__
6
7 /* public */
8
9 /**
10  * modest_text_utils_quote:
11  * @buf: a GtkTextBuffer which contains the message to quote
12  * @from: the sender of the original message
13  * @sent_date: sent date/time of the original message
14  * @limit: specifies the maximum characters per line in the quoted text
15  * 
16  * Returns: a string containing the quoted message
17  */
18 gchar *
19 modest_text_utils_quote(GtkTextBuffer *buf,
20                         const gchar *from,
21                         const time_t sent_date,
22                         const int limit);
23
24
25 #endif