You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
348 B
C
17 lines
348 B
C
#ifndef PATH_HELPER_H
|
|
#define PATH_HELPER_H
|
|
|
|
#include <libgen.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
/* returns <current source directory>/<relpath> written to <dest> */
|
|
void cat_sourcedir_with_relpath(char* dest, const char* relpath) {
|
|
strcpy(dest,TEST_SOURCE_DIR);
|
|
strcat(dest, relpath);
|
|
}
|
|
|
|
#endif
|