Revert "Add resolve_path() to utils"

This reverts commit c9694ee63d.
This commit is contained in:
madblobfish 2018-10-27 17:48:11 +02:00
parent d3a6263311
commit 1f23ec2d05
2 changed files with 0 additions and 46 deletions

View file

@ -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