81bf78b39d3b82f8ffd123f796ae5e6f5228af4c
Stefan Schuermans add cmdline to proc_begin

Stefan Schuermans authored 4 years ago

liblwpttr/src/stringlist.h  1) #ifndef LWPTTR_STRINGLIST_H
liblwpttr/src/stringlist.h  2) #define LWPTTR_STRINGLIST_H
liblwpttr/src/stringlist.h  3) 
liblwpttr/src/stringlist.h  4) #include "cleaner.h"
liblwpttr/src/stringlist.h  5) 
liblwpttr/src/stringlist.h  6) #include <stdlib.h>
liblwpttr/src/stringlist.h  7) 
liblwpttr/src/stringlist.h  8) /**
liblwpttr/src/stringlist.h  9)  * @brief read string list file
liblwpttr/src/stringlist.h 10)  * @param[in] pathname path to file containing zero-terminated string list
liblwpttr/src/stringlist.h 11)  * @param[out] *n number of strings read
liblwpttr/src/stringlist.h 12)  * @param[out] *strs strings read
liblwpttr/src/stringlist.h 13)  * @param[in,out] cleaner object, malloc-ed string is added to it
liblwpttr/src/stringlist.h 14)  * @return 0 on success, -1 on error
liblwpttr/src/stringlist.h 15)  *         (on error, cleanup is done and cleaner is deallocated)
liblwpttr/src/stringlist.h 16)  */
liblwpttr/src/stringlist.h 17) int stringlist_read(char const *pathname, size_t *n, char ***strs,
Stefan Schuermans lwpttr -> lwptev

Stefan Schuermans authored 4 years ago

liblwptev/src/stringlist.h 18)                     lwptev_cleaner_t *cleaner);