disas/ppc: Fix indefinite articles in comments
[qemu/ar7.git] / include / qapi / qmp / qint.h
blob3aaff768ddb30a0896324af9eb855f15dc417579
1 /*
2 * QInt Module
4 * Copyright (C) 2009 Red Hat Inc.
6 * Authors:
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.
13 #ifndef QINT_H
14 #define QINT_H
16 #include "qapi/qmp/qobject.h"
18 typedef struct QInt {
19 QObject base;
20 int64_t value;
21 } QInt;
23 QInt *qint_from_int(int64_t value);
24 int64_t qint_get_int(const QInt *qi);
25 QInt *qobject_to_qint(const QObject *obj);
26 void qint_destroy_obj(QObject *obj);
28 #endif /* QINT_H */