Skip to content

Instantly share code, notes, and snippets.

@DankRank
Created September 27, 2016 01:04
Show Gist options
  • Save DankRank/68995ba66e963baccd3804d2510cc583 to your computer and use it in GitHub Desktop.
Save DankRank/68995ba66e963baccd3804d2510cc583 to your computer and use it in GitHub Desktop.
a simple touch for djgpp
#include <stdio.h>
int main(int argc,char **argv){
while(--argc){
FILE *f = fopen(argv[argc],"a");
fclose(f);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment