1 .\" $NetBSD: stringlist.3,v 1.15 2010/05/06 09:46:49 jruoho Exp $
3 .\" Copyright (c) 1997, 1999 The NetBSD Foundation, Inc.
4 .\" All rights reserved.
6 .\" This file was contributed to The NetBSD Foundation by Luke Mewburn.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
13 .\" 2. Redistributions in binary form must reproduce the above copyright
14 .\" notice, this list of conditions and the following disclaimer in the
15 .\" documentation and/or other materials provided with the distribution.
17 .\" THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
18 .\" ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19 .\" TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20 .\" PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
21 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 .\" POSSIBILITY OF SUCH DAMAGE.
39 .Nd stringlist manipulation functions
47 .Fn sl_add "StringList *sl" "char *item"
49 .Fn sl_free "StringList *sl" "int freeall"
51 .Fn sl_find "StringList *sl" "const char *item"
53 .Fn sl_delete "StringList *sl" "const char *item" "int freeit"
57 functions manipulate stringlists, which are lists of
58 strings that extend automatically if necessary.
62 structure has the following definition:
63 .Bd -literal -offset indent
64 typedef struct _stringlist {
72 .Bl -tag -width "sl_str" -offset indent
74 is a pointer to the base of the array containing the list,
82 of the current element.
85 The following stringlist manipulation functions are available:
86 .Bl -tag -width "sl_delete()" -offset 2n
89 Returns a pointer to a
95 Releases memory occupied by
102 is non-zero, then each of the items within
111 .Ar sl-\*[Gt]sl_cur ,
112 extending the size of
113 .Ar sl-\*[Gt]sl_str .
114 Returns zero upon success, \-1 upon failure.
129 is non-zero, the string is freed.
135 if the name is not found.
143 functions appeared in