4 * Copyright (C) 2009 Red Hat Inc.
7 * Luiz Capitulino <lcapitulino@redhat.com>
9 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
10 * See the COPYING.LIB file in the top-level directory.
17 #include "qapi/qmp/qobject.h"
19 typedef struct QString
{
26 QString
*qstring_new(void);
27 QString
*qstring_from_str(const char *str
);
28 QString
*qstring_from_substr(const char *str
, int start
, int end
);
29 size_t qstring_get_length(const QString
*qstring
);
30 const char *qstring_get_str(const QString
*qstring
);
31 void qstring_append_int(QString
*qstring
, int64_t value
);
32 void qstring_append(QString
*qstring
, const char *str
);
33 void qstring_append_chr(QString
*qstring
, int c
);
34 QString
*qobject_to_qstring(const QObject
*obj
);
36 #endif /* QSTRING_H */