blob: 7a18aca090f7c2764d38d3ef9103bc33e3de2dce [file] [log] [blame]
bigbiff bigbiffe60683a2013-02-22 20:55:50 -05001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU Library Public License as published by
4 * the Free Software Foundation; either version 2, or (at your option)
5 * any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU Library Public License for more details.
11 */
12#ifndef CANONICALIZE_H
13#define CANONICALIZE_H
14
15#include "c.h" /* for PATH_MAX */
16
17extern char *canonicalize_path(const char *path);
18extern char *canonicalize_path_restricted(const char *path);
19extern char *canonicalize_dm_name(const char *ptname);
20
21#endif /* CANONICALIZE_H */