diff options
| author | 2016-10-22 04:39:47 +0200 | |
|---|---|---|
| committer | 2016-10-22 04:39:47 +0200 | |
| commit | 392135c7db4d9cb4a14ff5935d7c4c6e21363847 (patch) | |
| tree | 0e19125ed99b6b2ced754d1b9b3f4bc5245f8c39 /src/strbuf.h | |
| parent | a3263ad344ff315ac1cba96f0b84b9afff6da787 (diff) | |
| download | libplist-392135c7db4d9cb4a14ff5935d7c4c6e21363847.tar.gz libplist-392135c7db4d9cb4a14ff5935d7c4c6e21363847.tar.bz2 | |
Remove libxml2 dependency in favor of custom XML parsing
Diffstat (limited to 'src/strbuf.h')
| -rw-r--r-- | src/strbuf.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/strbuf.h b/src/strbuf.h new file mode 100644 index 0000000..6b7f9d3 --- /dev/null +++ b/src/strbuf.h | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | /* | ||
| 2 | * strbuf.h | ||
| 3 | * header file for simple string buffer, using the bytearray as underlying | ||
| 4 | * structure. | ||
| 5 | * | ||
| 6 | * Copyright (c) 2016 Nikias Bassen, All Rights Reserved. | ||
| 7 | * | ||
| 8 | * This library is free software; you can redistribute it and/or | ||
| 9 | * modify it under the terms of the GNU Lesser General Public | ||
| 10 | * License as published by the Free Software Foundation; either | ||
| 11 | * version 2.1 of the License, or (at your option) any later version. | ||
| 12 | * | ||
| 13 | * This library is distributed in the hope that it will be useful, | ||
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 16 | * Lesser General Public License for more details. | ||
| 17 | * | ||
| 18 | * You should have received a copy of the GNU Lesser General Public | ||
| 19 | * License along with this library; if not, write to the Free Software | ||
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 21 | */ | ||
| 22 | #ifndef STRBUF_H | ||
| 23 | #define STRBUF_H | ||
| 24 | #include <stdlib.h> | ||
| 25 | #include "bytearray.h" | ||
| 26 | |||
| 27 | typedef struct bytearray_t strbuf_t; | ||
| 28 | |||
| 29 | #define str_buf_new() byte_array_new() | ||
| 30 | #define str_buf_free(__ba) byte_array_free(__ba) | ||
| 31 | #define str_buf_append(__ba, __str, __len) byte_array_append(__ba, (void*)(__str), __len) | ||
| 32 | |||
| 33 | #endif | ||
