lang-bootstrap/05/main.c

9 lines
145 B
C
Raw Normal View History

#include <stdio.h>
#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) {
printf("%s\n",remove("test_file")?"failure":"success");
return 0;
2022-02-09 22:44:27 -05:00
}
2022-02-12 21:27:57 -05:00