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 / dir-list.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  1KB  |  56 lines

  1. /* GNU gettext - internationalization aids
  2.    Copyright (C) 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.  
  21. #ifdef HAVE_CONFIG_H
  22. #include "config.h"
  23. #endif
  24.  
  25. #ifdef STDC_HEADERS
  26. # include <stdlib.h>
  27. #endif
  28.  
  29. #include "system.h"
  30. #include "dir-list.h"
  31. #include "str-list.h"
  32.  
  33. static string_list_ty *directory;
  34.  
  35.  
  36. void
  37. dir_list_append (s)
  38.      const char *s;
  39. {
  40.   if (directory == NULL)
  41.     directory = string_list_alloc ();
  42.   string_list_append_unique (directory, s);
  43. }
  44.  
  45.  
  46. const char *
  47. dir_list_nth (n)
  48.      int n;
  49. {
  50.   if (directory == NULL)
  51.     dir_list_append (".");
  52.   if (n < 0 || n >= directory->nitems)
  53.     return NULL;
  54.   return directory->item[n];
  55. }
  56.