blob: 6168e424d73275ebe7998f2c055692580c0d4a8e (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _PATH_H
#define _PATH_H
char *expanduser(const char *path);
char *to_abspath(const char *path);
const char *join_path_with_delim(const char *p1, const char *p2,
const char delim);
const char *join_path(const char *p1, const char *p2);
#endif
|