Open SCAP Library
oscap_buffer.h
1 /*
2  * Copyright 2015 Red Hat Inc., Durham, North Carolina.
3  * All Rights Reserved.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  *
19  * Authors:
20  * Jan Černý <jcerny@redhat.com>
21  */
22 
23 #ifndef OSCAP_BUFFER_H_
24 #define OSCAP_BUFFER_H_
25 #include "util.h"
26 
27 
28 struct oscap_buffer;
29 
34 struct oscap_buffer *oscap_buffer_new(void);
35 
40 void oscap_buffer_free(struct oscap_buffer *s);
41 
47 char* oscap_buffer_bequeath(struct oscap_buffer *s);
48 
53 void oscap_buffer_clear(struct oscap_buffer *s);
54 
60 void oscap_buffer_append_char(struct oscap_buffer *s, char c);
61 
68 void oscap_buffer_append_binary_data(struct oscap_buffer *s, const char *data, const size_t append_length);
69 
75 void oscap_buffer_append_string(struct oscap_buffer *s, const char *t);
76 
82 char *oscap_buffer_get_raw(const struct oscap_buffer *s);
83 
89 size_t oscap_buffer_get_length(const struct oscap_buffer *s);
90 
91 
92 #endif
Buffer with unlimited length contains:
Definition: oscap_buffer.c:41