Blame


1 7b19e0f1 2017-11-05 stsp /*
2 7b19e0f1 2017-11-05 stsp * Copyright (c) 2017 Stefan Sperling <stsp@openbsd.org>
3 7b19e0f1 2017-11-05 stsp *
4 7b19e0f1 2017-11-05 stsp * Permission to use, copy, modify, and distribute this software for any
5 7b19e0f1 2017-11-05 stsp * purpose with or without fee is hereby granted, provided that the above
6 7b19e0f1 2017-11-05 stsp * copyright notice and this permission notice appear in all copies.
7 7b19e0f1 2017-11-05 stsp *
8 7b19e0f1 2017-11-05 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 7b19e0f1 2017-11-05 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 7b19e0f1 2017-11-05 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 7b19e0f1 2017-11-05 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 7b19e0f1 2017-11-05 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 7b19e0f1 2017-11-05 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 7b19e0f1 2017-11-05 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 7b19e0f1 2017-11-05 stsp */
16 7b19e0f1 2017-11-05 stsp
17 4027f31a 2017-11-04 stsp /* Utilities for dealing with filesystem paths. */
18 4027f31a 2017-11-04 stsp
19 4027f31a 2017-11-04 stsp /* Determine whether a path is an absolute path. */
20 4027f31a 2017-11-04 stsp int got_path_is_absolute(const char *);
21 4027f31a 2017-11-04 stsp
22 4027f31a 2017-11-04 stsp /*
23 4027f31a 2017-11-04 stsp * Return an absolute version of a relative path.
24 4027f31a 2017-11-04 stsp * The result is allocated with malloc(3).
25 4027f31a 2017-11-04 stsp */
26 4027f31a 2017-11-04 stsp char *got_path_get_absolute(const char *);
27 4027f31a 2017-11-04 stsp
28 4027f31a 2017-11-04 stsp /*
29 4027f31a 2017-11-04 stsp * Normalize a path for internal processing.
30 4027f31a 2017-11-04 stsp * The result is allocated with malloc(3).
31 4027f31a 2017-11-04 stsp */
32 4027f31a 2017-11-04 stsp char *got_path_normalize(const char *);