blob: 15450c1d79c9e3d8ad4f7b02bdc0a82db62d2037 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef REALPATH_H
#define REALPATH_H
#include <limits.h>
#ifndef PATH_MAX
# define PATH_MAX 4096
#endif
extern char *myrealpath(const char *path, char *resolved_path, int m);
extern char *canonicalize (const char *path);
extern char *canonicalize_spec (const char *path);
extern int is_pseudo_fs(const char *type);
#endif /* REALPATH_H */
|