17 lines
264 B
C
17 lines
264 B
C
#include "src.h"
|
|
#include <stdio.h>
|
|
|
|
void c1() {
|
|
FILE *f = fopen(FNAME, "w+");
|
|
solve(1, "Creation of a new file",
|
|
fmtstr("Filename: %s\nLocation: %s", FNAME, get_file_path(FNAME)));
|
|
}
|
|
|
|
int main() {
|
|
print_header();
|
|
c1();
|
|
return 0;
|
|
}
|
|
|
|
|