Open SCAP Library
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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 OSCAP_HIDDEN_START;
28 
29 struct oscap_buffer;
30 
35 struct oscap_buffer *oscap_buffer_new(void);
36 
41 void oscap_buffer_free(struct oscap_buffer *s);
42 
48 char* oscap_buffer_bequeath(struct oscap_buffer *s);
49 
54 void oscap_buffer_clear(struct oscap_buffer *s);
55 
61 void oscap_buffer_append_char(struct oscap_buffer *s, char c);
62 
69 void oscap_buffer_append_binary_data(struct oscap_buffer *s, const char *data, const size_t append_length);
70 
76 void oscap_buffer_append_string(struct oscap_buffer *s, const char *t);
77 
83 char *oscap_buffer_get_raw(const struct oscap_buffer *s);
84 
90 size_t oscap_buffer_get_length(const struct oscap_buffer *s);
91 
92 OSCAP_HIDDEN_END;
93 
94 #endif
Buffer with unlimited length contains:
Definition: oscap_buffer.c:41