Wait for key before exiting.

This commit is contained in:
2021-05-25 21:51:58 +01:00
parent 9913136690
commit f5153c879c
2 changed files with 5 additions and 1 deletions

View File

@@ -64,5 +64,5 @@ void Filenames(const char* path)
printf("%d:%d,%d,%d-", pos, rc, wRc, cRc);
}
printf("\n");
printf("\n\n");
}

View File

@@ -61,5 +61,9 @@ int main(int argc, char** argv)
Filenames("");
DirectoryDepth("");
printf("Press any key to exit.\n");
getchar();
return 0;
}