summaryrefslogtreecommitdiff
path: root/src/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h34
1 files changed, 16 insertions, 18 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 987a6a81..4f4cf317 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -1,21 +1,19 @@
/*
* Copyright 2009 Red Hat, Inc.
*
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
+ * 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 of the License, or (at your option) any later version.
+ * version 2.1 of the License, or (at your option) any later version.
*
- * This program is distributed in the hope that it will be useful,
+ * 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
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this program; if not, write to the Free
- * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
- * MA 02111-1307, USA
+ * 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. */
@@ -28,15 +26,15 @@
G_BEGIN_DECLS
-typedef GByteArray VteBuffer;
+typedef GByteArray VteByteArray;
-#define _vte_buffer_new g_byte_array_new
-#define _vte_buffer_free(B) g_byte_array_free (B, TRUE)
-#define _vte_buffer_append(B, data, length) g_byte_array_append (B, (const guint8 *) (data), length)
-#define _vte_buffer_length(B) ((B)->len)
-#define _vte_buffer_consume(B, length) g_byte_array_remove_range (B, 0, length)
-#define _vte_buffer_clear(B) g_byte_array_set_size (B, 0)
-#define _vte_buffer_set_minimum_size(B, length) g_byte_array_set_size (B, (guint) MAX ((gint) (length), (gint) (B)->len))
+#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