Blob


1 /* Utilities for dealing with filesystem paths. */
3 /* Determine whether a path is an absolute path. */
4 int got_path_is_absolute(const char *);
6 /*
7 * Return an absolute version of a relative path.
8 * The result is allocated with malloc(3).
9 */
10 char *got_path_get_absolute(const char *);
12 /*
13 * Normalize a path for internal processing.
14 * The result is allocated with malloc(3).
15 */
16 char *got_path_normalize(const char *);