diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2009-11-18 23:05:26 -0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-03 09:41:19 -0600 |
commit | 764c1caeb32bae139ce3984cba987e328a66e2ab (patch) | |
tree | ab924b29fee8f3133a95291ec08b984ec3aa71de /qstring.h | |
parent | 6fe9565c5b6f2872f115223df3d8d61eb78bff8c (diff) |
QString: Introduce qstring_append_int()
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qstring.h')
-rw-r--r-- | qstring.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1,6 +1,7 @@ #ifndef QSTRING_H #define QSTRING_H +#include <stdint.h> #include "qobject.h" typedef struct QString { @@ -13,6 +14,7 @@ typedef struct QString { QString *qstring_new(void); QString *qstring_from_str(const char *str); const char *qstring_get_str(const QString *qstring); +void qstring_append_int(QString *qstring, int64_t value); void qstring_append(QString *qstring, const char *str); void qstring_append_chr(QString *qstring, int c); QString *qobject_to_qstring(const QObject *obj); |