Lorenzob's picture
Upload folder using huggingface_hub
19605ab verified
raw
history blame
183 Bytes
#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;
}