BlinkenArea - GitList
Repositories
Blog
Wiki
uproctrace
Code
Commits
Branches
Tags
Search
Tree:
840c0b1
Branches
Tags
master
uproctrace
libuptev
src
symlink.h
add copyright headers and license (LGPL)
Stefan Schuermans
commited
840c0b1
at 2020-05-24 15:59:07
symlink.h
Blame
History
Raw
/** * UProcTrace: User-space Process Tracing * Copyright 2020: Stefan Schuermans, Aachen, Germany <stefan@schuermans.info> * Copyleft: GNU LESSER GENERAL PUBLIC LICENSE version 3 (see LICENSE) */ #ifndef UPTEV_SYMLINK_H #define UPTEV_SYMLINK_H #include "cleaner.h" /** * @brief read symlink * @param[in] pathname path to symbolic link * @param[in,out] cleaner object, malloc-ed string is added to it on success * @return malloc-ed string object containing symlink target or NULL on error */ char *uptev_symlink_read(char const *pathname, uptev_cleaner_t *cleaner); #endif /* #ifndef UPTEV_SYMLINK_H */