13 lines
188 B
C
13 lines
188 B
C
#include <stdio.h>
|
|
|
|
void setup (void) {
|
|
remove("logfile.txt");
|
|
remove("storefile.txt");
|
|
remove("blob0_file.txt");
|
|
remove("blob1_file.txt");
|
|
}
|
|
|
|
void teardown(void) {
|
|
setup();
|
|
}
|
|
|