Rocco Rutte:
[apps/madmutt.git] / buffer.h
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9 #ifndef _MUTT_BUFFER_H
10 #define _MUTT_BUFFER_H
11
12 #include "mutt.h"
13
14 int mutt_extract_token (BUFFER *, BUFFER *, int);
15 BUFFER *mutt_buffer_init (BUFFER *);
16 BUFFER *mutt_buffer_from (BUFFER *, char *);
17 void mutt_buffer_free (BUFFER **);
18 void mutt_buffer_add (BUFFER *, const char *, size_t);
19 void mutt_buffer_addstr (BUFFER *, const char *);
20 void mutt_buffer_addch (BUFFER *, char);
21
22 #endif /* !_MUTT_BUFFER_H */