diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2009-11-11 10:49:51 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-11-17 08:49:38 -0600 |
commit | d30ec846ed89672426b19d50a899ae849ec27edf (patch) | |
tree | 9d3bfe599a90ebd88670bec9b5ad6411baf978e4 /qstring.h | |
parent | 033815fe14e9e6254f1483113a6dd6d5b130ef58 (diff) |
Allow strings to grow in size
This lets us use QString for building larger strings
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qstring.h')
-rw-r--r-- | qstring.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -6,10 +6,14 @@ typedef struct QString { QObject_HEAD; char *string; + size_t length; + size_t capacity; } QString; +QString *qstring_new(void); QString *qstring_from_str(const char *str); const char *qstring_get_str(const QString *qstring); +void qstring_append(QString *qstring, const char *str); QString *qobject_to_qstring(const QObject *obj); #endif /* QSTRING_H */ |