51 lines
1.6 KiB
C
51 lines
1.6 KiB
C
/* GNU gettext - internationalization aids
|
|
Copyright (C) 1995, 1996, 1998 Free Software Foundation, Inc.
|
|
|
|
This file was written by Peter Miller <millerp@canb.auug.org.au>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
#ifndef SRC_STR_LIST_H
|
|
#define SRC_STR_LIST_H 1
|
|
|
|
#ifdef STC_HEADERS
|
|
# define __need_size_t
|
|
# define __need_NULL
|
|
# include <stddef.h>
|
|
#else
|
|
# include <sys/types.h>
|
|
# include <stdio.h>
|
|
#endif
|
|
|
|
/* Type describing list of strings implemented using a dynamic array. */
|
|
typedef struct string_list_ty string_list_ty;
|
|
struct string_list_ty
|
|
{
|
|
const char **item;
|
|
size_t nitems;
|
|
size_t nitems_max;
|
|
};
|
|
|
|
|
|
string_list_ty *string_list_alloc PARAMS ((void));
|
|
void string_list_append PARAMS ((string_list_ty *__slp, const char *__s));
|
|
void string_list_append_unique PARAMS ((string_list_ty *__slp,
|
|
const char *__s));
|
|
void string_list_free PARAMS ((string_list_ty *__slp));
|
|
char *string_list_join PARAMS ((const string_list_ty *__slp));
|
|
int string_list_member PARAMS ((const string_list_ty *__slp, const char *__s));
|
|
|
|
#endif
|