File size: 183 Bytes
f9f1a35 |
1 2 3 4 5 6 7 8 9 10 11 |
#include <windows.h>
#include "TestUtil.cc"
int main(int argc, char *argv[]) {
int col = atoi(argv[1]);
int row = atoi(argv[2]);
setCursorPos(col, row);
return 0;
}
|