4 * Copyright IBM, Corp. 2010
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
14 #include "qemu/osdep.h"
15 #include <glib/gprintf.h>
19 #include "9p-marshal.h"
21 P9ARRAY_DEFINE_TYPE(V9fsString
, v9fs_string_free
);
23 void v9fs_string_free(V9fsString
*str
)
30 void G_GNUC_PRINTF(2, 3)
31 v9fs_string_sprintf(V9fsString
*str
, const char *fmt
, ...)
35 v9fs_string_free(str
);
38 str
->size
= g_vasprintf(&str
->data
, fmt
, ap
);
42 void v9fs_string_copy(V9fsString
*lhs
, V9fsString
*rhs
)
44 v9fs_string_free(lhs
);
45 v9fs_string_sprintf(lhs
, "%s", rhs
->data
);