From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:37529) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPOpk-0007hn-N6 for qemu-devel@nongnu.org; Mon, 08 Apr 2013 23:02:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UPOpj-0003j9-Py for qemu-devel@nongnu.org; Mon, 08 Apr 2013 23:02:56 -0400 Received: from [222.73.24.84] (port=3519 helo=song.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UPOpj-0003g3-FJ for qemu-devel@nongnu.org; Mon, 08 Apr 2013 23:02:55 -0400 Date: Tue, 9 Apr 2013 11:02:15 +0800 From: Hu Tao Message-ID: <20130409030215.GD19067@localhost.localdomain> References: <1364240439-23450-1-git-send-email-lcapitulino@redhat.com> <1364240439-23450-2-git-send-email-lcapitulino@redhat.com> MIME-Version: 1.0 In-Reply-To: <1364240439-23450-2-git-send-email-lcapitulino@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Subject: Re: [Qemu-devel] [PATCH 1/2] qstring: add qobject_get_length() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Luiz Capitulino Cc: fred.konrad@greensocs.com, qemu-devel@nongnu.org, kraxel@redhat.com 'add qobject_get_length()' in the subject line but you are actually adding qstring_get_length() On Mon, Mar 25, 2013 at 03:40:38PM -0400, Luiz Capitulino wrote: > 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