840c0b18e9990fe15416283f869bc8532c1bbf3a
Stefan Schuermans add copyright headers and l...

Stefan Schuermans authored 4 years ago

1) /**
2)  * UProcTrace: User-space Process Tracing
3)  * Copyright 2020: Stefan Schuermans, Aachen, Germany <stefan@schuermans.info>
4)  * Copyleft: GNU LESSER GENERAL PUBLIC LICENSE version 3 (see LICENSE)
5)  */
6) 
Stefan Schuermans rename: lwproctrace -> upro...

Stefan Schuermans authored 4 years ago

7) #ifndef UPTEV_SYMLINK_H
8) #define UPTEV_SYMLINK_H
9) 
10) #include "cleaner.h"
11) 
12) /**
13)  * @brief read symlink
14)  * @param[in] pathname path to symbolic link
15)  * @param[in,out] cleaner object, malloc-ed string is added to it on success
16)  * @return malloc-ed string object containing symlink target or NULL on error
17)  */
Stefan Schuermans formatting

Stefan Schuermans authored 4 years ago

18) char *uptev_symlink_read(char const *pathname, uptev_cleaner_t *cleaner);