home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gettext-0.10.24-src.tgz / tar.out / fsf / gettext / src / str-list.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  2KB  |  46 lines

  1. /* GNU gettext - internationalization aids
  2.    Copyright (C) 1995, 1996 Free Software Foundation, Inc.
  3.  
  4.    This file was written by Peter Miller <pmiller@agso.gov.au>
  5.  
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  19.  
  20. #ifndef SRC_STR_LIST_H
  21. #define SRC_STR_LIST_H 1
  22.  
  23. #define __need_size_t
  24. #define __need_NULL
  25. #include <stddef.h>
  26.  
  27. /* Type describing list of strings implemented using a dynamic array.  */
  28. typedef struct string_list_ty string_list_ty;
  29. struct string_list_ty
  30. {
  31.   const char **item;
  32.   size_t nitems;
  33.   size_t nitems_max;
  34. };
  35.  
  36.  
  37. string_list_ty *string_list_alloc PARAMS ((void));
  38. void string_list_append PARAMS ((string_list_ty *__slp, const char *__s));
  39. void string_list_append_unique PARAMS ((string_list_ty *__slp,
  40.                     const char *__s));
  41. void string_list_free PARAMS ((string_list_ty *__slp));
  42. char *string_list_join PARAMS ((const string_list_ty *__slp));
  43. int string_list_member PARAMS ((const string_list_ty *__slp, const char *__s));
  44.  
  45. #endif
  46.