#define SEQAN_PATH_TO_ROOT
Return path to the checkout root directory.

Defined in <seqan/basic.h>
Signature TCharPtr SEQAN_PATH_TO_ROOT()

Return Values

TCharPtr char const *, string with the path to the parent directory of the tests directory.

Detailed Description

Deprecated.

Unsafe.

Examples

CharString buffer = SEQAN_PATH_TO_ROOT();
append(buffer, "/tests/files/example.txt");

FILE *f = fopen(toCString(buffer), "w");
fprintf(f, "Test Data");
fclose(f);

Data Races

Thread safety unknown!

See Also