From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:43726) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UN7ex-00020z-Pu for qemu-devel@nongnu.org; Tue, 02 Apr 2013 16:18:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UN7ew-0003cT-UA for qemu-devel@nongnu.org; Tue, 02 Apr 2013 16:18:23 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47935) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UN7ew-0003cG-Le for qemu-devel@nongnu.org; Tue, 02 Apr 2013 16:18:22 -0400 From: Luiz Capitulino Date: Tue, 2 Apr 2013 16:18:14 -0400 Message-Id: <1364933897-25803-2-git-send-email-lcapitulino@redhat.com> In-Reply-To: <1364933897-25803-1-git-send-email-lcapitulino@redhat.com> References: <1364933897-25803-1-git-send-email-lcapitulino@redhat.com> Subject: [Qemu-devel] [PATCH 1/4] qstring: add qstring_get_length() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: armbru@redhat.com, aliguori@us.ibm.com, kraxel@redhat.com, fred.konrad@greensocs.com Long overdue. Signed-off-by: Luiz Capitulino --- include/qapi/qmp/qstring.h | 1 + qobject/qstring.c | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/include/qapi/qmp/qstring.h b/include/qapi/qmp/qstring.h index 0e690f4..1bc3666 100644 --- a/include/qapi/qmp/qstring.h +++ b/include/qapi/qmp/qstring.h @@ -26,6 +26,7 @@ typedef struct QString { QString *qstring_new(void); QString *qstring_from_str(const char *str); QString *qstring_from_substr(const char *str, int start, int end); +size_t qstring_get_length(const QString *qstring); const char *qstring_get_str(const QString *qstring); void qstring_append_int(QString *qstring, int64_t value); void qstring_append(QString *qstring, const char *str); diff --git a/qobject/qstring.c b/qobject/qstring.c index 5f7376c..607b7a1 100644 --- a/qobject/qstring.c +++ b/qobject/qstring.c @@ -32,6 +32,14 @@ QString *qstring_new(void) } /** + * qstring_get_length(): Get the length of a QString + */ +size_t qstring_get_length(const QString *qstring) +{ + return qstring->length; +} + +/** * qstring_from_substr(): Create a new QString from a C string substring * * Return string reference -- 1.8.1.4