2022-02-13 22:12:44 -05:00
|
|
|
#include <stdio.h>
|
2022-02-14 12:04:49 -05:00
|
|
|
#include <string.h>
|
2022-02-13 12:51:21 -05:00
|
|
|
|
2022-02-13 15:07:26 -05:00
|
|
|
int main(int argc, char **argv) {
|
2022-02-14 12:04:49 -05:00
|
|
|
printf("%s\n",remove("test_file")?"failure":"success");
|
2022-02-14 11:39:33 -05:00
|
|
|
return 0;
|
2022-02-09 22:44:27 -05:00
|
|
|
}
|
2022-02-12 21:27:57 -05:00
|
|
|
|