BlinkenArea - GitList
Repositories
Blog
Wiki
uproctrace
Code
Commits
Branches
Tags
Search
Tree:
840c0b1
Branches
Tags
master
uproctrace
libuptev
src
read_file.h
add copyright headers and license (LGPL)
Stefan Schuermans
commited
840c0b1
at 2020-05-24 15:59:07
read_file.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_READ_FILE_H #define UPTEV_READ_FILE_H /** * @brief read file contents * @param[in] pathname path to file containing zero-terminated string list * @param[out] *size size of file contents * @return pointer to malloc-ed file contents or NULL */ char *uptev_read_file(char const *pathname, size_t *size); #endif /* #ifndef UPTEV_READ_FILE_H */