]>
Commit | Line | Data |
---|---|---|
5ba3f43e A |
1 | #ifndef XNU_QUICK_TEST_HELPERS_H |
2 | #define XNU_QUICK_TEST_HELPERS_H | |
3 | ||
4 | #include <stdlib.h> | |
5 | #include <sys/stat.h> | |
6 | #include <sys/syslimits.h> | |
7 | ||
8 | #define TEST_DIRECTORY "/tmp" | |
9 | ||
0a7de745 | 10 | extern char g_target_path[PATH_MAX]; |
5ba3f43e A |
11 | |
12 | int create_random_name( char *the_pathp, int do_open ); | |
13 | void create_target_directory( const char * the_targetp ); | |
14 | void remove_target_directory( void ); | |
15 | ||
16 | #endif |