1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include <stdio.h> int main(int argc, char** argv) { FILE* fout = fopen(argv[argc-1], "w"); printf("Wrap creating \"%s\"\n", argv[argc-1]); if(fout) { fprintf(fout, "int foo() { return 0; }\n"); fclose(fout); } else { return -1; } return 0; }