summaryrefslogtreecommitdiff
path: root/src/buffer.h
blob: 4f4cf317d2b244cba87e0b5f5c8e820817482358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * Copyright 2009 Red Hat, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

/* The interfaces in this file are subject to change at any time. */

#ifndef vte_buffer_h_included
#define vte_buffer_h_included


#include <glib.h>

G_BEGIN_DECLS

typedef GByteArray VteByteArray;

#define _vte_byte_array_new				g_byte_array_new
#define _vte_byte_array_free(B)			g_byte_array_free (B, TRUE)
#define _vte_byte_array_append(B, data, length)	g_byte_array_append (B, (const guint8 *) (data), length)
#define _vte_byte_array_length(B)			((B)->len)
#define _vte_byte_array_consume(B, length)		g_byte_array_remove_range (B, 0, length)
#define _vte_byte_array_clear(B)			g_byte_array_set_size (B, 0)
#define _vte_byte_array_set_minimum_size(B, length)	g_byte_array_set_size (B, (guint) MAX ((gint) (length), (gint) (B)->len))

G_END_DECLS

#endif