2010-05-12 19:34:42 +00:00
|
|
|
/*
|
|
|
|
* QString Module
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Luiz Capitulino <lcapitulino@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2009-08-28 18:27:06 +00:00
|
|
|
#ifndef QSTRING_H
|
|
|
|
#define QSTRING_H
|
|
|
|
|
2012-12-17 17:19:43 +00:00
|
|
|
#include "qapi/qmp/qobject.h"
|
2009-08-28 18:27:06 +00:00
|
|
|
|
2018-02-01 11:18:34 +00:00
|
|
|
struct QString {
|
2018-04-19 15:01:42 +00:00
|
|
|
struct QObjectBase_ base;
|
2020-12-11 17:11:52 +00:00
|
|
|
const char *string;
|
2018-02-01 11:18:34 +00:00
|
|
|
};
|
2009-08-28 18:27:06 +00:00
|
|
|
|
2009-11-11 16:49:51 +00:00
|
|
|
QString *qstring_new(void);
|
2009-08-28 18:27:06 +00:00
|
|
|
QString *qstring_from_str(const char *str);
|
2018-07-24 13:43:39 +00:00
|
|
|
QString *qstring_from_substr(const char *str, size_t start, size_t end);
|
2020-12-11 17:11:36 +00:00
|
|
|
QString *qstring_from_gstring(GString *gstr);
|
2009-08-28 18:27:06 +00:00
|
|
|
const char *qstring_get_str(const QString *qstring);
|
|
|
|
|
|
|
|
#endif /* QSTRING_H */
|