sim-card
/
qemu
Archived
10
0
Fork 0
This repository has been archived on 2022-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
qemu/qstring.h

16 lines
302 B
C

#ifndef QSTRING_H
#define QSTRING_H
#include "qobject.h"
typedef struct QString {
QObject_HEAD;
char *string;
} QString;
QString *qstring_from_str(const char *str);
const char *qstring_get_str(const QString *qstring);
QString *qobject_to_qstring(const QObject *obj);
#endif /* QSTRING_H */