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.c | |
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.c')
-rw-r--r-- | qstring.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -75,6 +75,14 @@ void qstring_append(QString *qstring, const char *str) qstring->string[qstring->length] = 0; } +void qstring_append_int(QString *qstring, int64_t value) +{ + char num[32]; + + snprintf(num, sizeof(num), "%" PRId64, value); + qstring_append(qstring, num); +} + /** * qstring_append_chr(): Append a C char to a QString */ |