~ubuntu-branches/ubuntu/breezy/gettext/breezy

« back to all changes in this revision

Viewing changes to src/dir-list.c

  • Committer: Bazaar Package Importer
  • Author(s): Santiago Vila
  • Date: 2004-03-14 17:40:02 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040314174002-p1ad5ldve1hqzhye
Tags: 0.14.1-2
* Added libexpat1-dev to Build-Depends, for glade support.
* Added libc0.1-dev to Build-Depends, for GNU/kFreeBSD.
* Removed special-casing of knetbsd-gnu in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* GNU gettext - internationalization aids
2
 
   Copyright (C) 1996, 1998, 2000, 2001 Free Software Foundation, Inc.
3
 
 
4
 
   This file was written by Peter Miller <millerp@canb.auug.org.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
 
#include <stdlib.h>
26
 
 
27
 
#include "system.h"
28
 
#include "dir-list.h"
29
 
#include "str-list.h"
30
 
 
31
 
static string_list_ty *directory /* = NULL */;
32
 
 
33
 
 
34
 
/* Append a directory to the end of the list of directories.  */
35
 
void
36
 
dir_list_append (s)
37
 
     const char *s;
38
 
{
39
 
  if (directory == NULL)
40
 
    directory = string_list_alloc ();
41
 
  string_list_append_unique (directory, s);
42
 
}
43
 
 
44
 
 
45
 
/* Return the nth directory, or NULL of n is out of range.  */
46
 
const char *
47
 
dir_list_nth (n)
48
 
     int n;
49
 
{
50
 
  /* The default value of the list consists of the single directory ".".  */
51
 
  if (directory == NULL)
52
 
    dir_list_append (".");
53
 
 
54
 
  if (n < 0 || n >= directory->nitems)
55
 
    return NULL;
56
 
  return directory->item[n];
57
 
}