BlinkenArea - GitList
Repositories
Blog
Wiki
uproctrace
Code
Commits
Branches
Tags
Search
Tree:
d56e99d
Branches
Tags
master
uproctrace
liblwptev
src
symlink.h
lwpttr -> lwptev (include guards)
Stefan Schuermans
commited
d56e99d
at 2020-05-17 19:02:49
symlink.h
Blame
History
Raw
#ifndef LWPTEV_SYMLINK_H #define LWPTEV_SYMLINK_H #include "cleaner.h" /** * @brief read symlink * @param[in] pathname path to symbolic link * @param[out] *target malloc-ed string object containing symlink target * @param[in,out] cleaner object, malloc-ed string is added to it * @return 0 on success, -1 on error * (on error, cleanup is done and cleaner is deallocated) */ int lwptev_symlink_read(char const *pathname, char **target, lwptev_cleaner_t *cleaner); #endif /* #ifndef LWPTEV_SYMLINK_H */