diff options
author | emersion <contact@emersion.fr> | 2018-10-31 14:48:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 14:48:17 +0100 |
commit | e9c136b0eece9369622baaca9656307a919b3547 (patch) | |
tree | 8cfcd8e119b0fc546d75a6d18dbe53f705e4a63c /include/util.h | |
parent | fbbf810668783636816cb8ceaca4e5cb628c6778 (diff) | |
parent | 1f23ec2d050976d6f2dafd545302e9be3f821c81 (diff) |
Merge pull request #3027 from madblobfish/remove-resolve_path
Remove resolve_path() from utils
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/util.h b/include/util.h index c39c92b1..56ca2eb8 100644 --- a/include/util.h +++ b/include/util.h @@ -59,13 +59,4 @@ uint32_t parse_color(const char *color); */ bool parse_boolean(const char *boolean, bool current); -/** - * Given a path string, recurseively resolves any symlinks to their targets - * (which may be a file, directory) and returns the result. - * argument is returned. Caller must free the returned buffer. - * If an error occures, if the path does not exist or if the path corresponds - * to a dangling symlink, NULL is returned. - */ -char* resolve_path(const char* path); - #endif |