summaryrefslogtreecommitdiffstats
path: root/include/canonicalize.h
blob: b8906d43d134f0a09d171a27a6431b57489c0838 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef CANONICALIZE_H
#define CANONICALIZE_H

#include <limits.h>
#ifndef PATH_MAX
# define PATH_MAX 4096
#endif

extern char *canonicalize_path(const char *path);

#endif /* CANONICALIZE_H */