]> git.proxmox.com Git - mirror_qemu.git/blame - qapi/qapi-type-helpers.c
Merge tag 'migration-20231020-pull-request' of https://gitlab.com/juan.quintela/qemu...
[mirror_qemu.git] / qapi / qapi-type-helpers.c
CommitLineData
f9429c67
DB
1/*
2 * QAPI common helper functions
3 *
4 * This file provides helper functions related to types defined
5 * in the QAPI schema.
6 *
7 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
8 * See the COPYING.LIB file in the top-level directory.
9 *
10 */
11
12#include "qemu/osdep.h"
13#include "qapi/error.h"
14#include "qapi/type-helpers.h"
15
16HumanReadableText *human_readable_text_from_str(GString *str)
17{
18 HumanReadableText *ret = g_new0(HumanReadableText, 1);
19
20 ret->human_readable_text = g_steal_pointer(&str->str);
21
22 return ret;
23}