mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-23 07:59:37 +00:00
9 lines
197 B
C
9 lines
197 B
C
#ifndef MLR_TEST_UTIL_H
|
|
#define MLR_TEST_UTIL_H
|
|
|
|
// Returns the name of the temp file
|
|
char* write_temp_file_or_die(char* contents);
|
|
|
|
void unlink_file_or_die(char* path);
|
|
|
|
#endif // MLR_TEST_UTIL_H
|