]> git.cworth.org Git - tar/blob - gnu/canonicalize.h
Imported Upstream version 1.23
[tar] / gnu / canonicalize.h
1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* Return the canonical absolute name of a given file.
4    Copyright (C) 1996-2007, 2009-2010 Free Software Foundation, Inc.
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 3 of the License, or
9    (at your option) 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, see <http://www.gnu.org/licenses/>.  */
18
19 #ifndef CANONICALIZE_H_
20 # define CANONICALIZE_H_
21
22 #include <stdlib.h> /* for canonicalize_file_name */
23
24 enum canonicalize_mode_t
25   {
26     /* All components must exist.  */
27     CAN_EXISTING = 0,
28
29     /* All components excluding last one must exist.  */
30     CAN_ALL_BUT_LAST = 1,
31
32     /* No requirements on components existence.  */
33     CAN_MISSING = 2
34   };
35 typedef enum canonicalize_mode_t canonicalize_mode_t;
36
37 /* Return a malloc'd string containing the canonical absolute name of
38    the named file.  This acts like canonicalize_file_name, except that
39    whether components must exist depends on the canonicalize_mode_t
40    argument.  */
41 char *canonicalize_filename_mode (const char *, canonicalize_mode_t);
42
43 #endif /* !CANONICALIZE_H_ */