From: Michael Haggerty <mhagger@alum.mit.edu>
To: Junio C Hamano <gitster@pobox.com>
Cc: Jeff King <peff@peff.net>,
git@vger.kernel.org, Michael Haggerty <mhagger@alum.mit.edu>
Subject: [PATCH v3 6/6] api-string-list.txt: initialize the string_list the easy way
Date: Wed, 12 Sep 2012 16:04:47 +0200 [thread overview]
Message-ID: <1347458687-31092-7-git-send-email-mhagger@alum.mit.edu> (raw)
In-Reply-To: <1347458687-31092-1-git-send-email-mhagger@alum.mit.edu>
In the demo code blurb, show how to initialize the string_list using
STRING_LIST_INIT_NODUP rather than memset().
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
---
Documentation/technical/api-string-list.txt | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/Documentation/technical/api-string-list.txt b/Documentation/technical/api-string-list.txt
index 32b35d9..155ac8c 100644
--- a/Documentation/technical/api-string-list.txt
+++ b/Documentation/technical/api-string-list.txt
@@ -44,10 +44,9 @@ member (you need this if you add things later) and you should set the
Example:
----
-struct string_list list;
+struct string_list list = STRING_LIST_INIT_NODUP;
int i;
-memset(&list, 0, sizeof(struct string_list));
string_list_append(&list, "foo");
string_list_append(&list, "bar");
for (i = 0; i < list.nr; i++)
--
1.7.11.3
prev parent reply other threads:[~2012-09-12 14:05 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-12 14:04 [PATCH v3 0/6] Add some string_list-related functions Michael Haggerty
2012-09-12 14:04 ` [PATCH v3 1/6] string_list: add function string_list_append_nodup() Michael Haggerty
2012-09-12 14:04 ` [PATCH v3 2/6] string_list: add two new functions for splitting strings Michael Haggerty
2012-09-12 14:04 ` [PATCH v3 3/6] string_list: add a new function, filter_string_list() Michael Haggerty
2012-09-12 14:04 ` [PATCH v3 4/6] string_list: add a new function, string_list_remove_duplicates() Michael Haggerty
2012-09-12 14:04 ` [PATCH v3 5/6] string_list: add a function string_list_longest_prefix() Michael Haggerty
2012-09-12 14:04 ` Michael Haggerty [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1347458687-31092-7-git-send-email-mhagger@alum.mit.edu \
--to=mhagger@alum.mit.edu \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=peff@peff.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).