#ifndef PATH_HELPER_H #define PATH_HELPER_H #include #include #include #include #include /* returns / written to */ void cat_sourcedir_with_relpath(char* dest, const char* relpath) { strcpy(dest,TEST_SOURCE_DIR); strcat(dest, relpath); } #endif