NESpire/testing/util.c

22 lines
304 B
C
Raw Normal View History

2024-05-20 21:32:41 +01:00
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <dirent.h>
#include <libndls.h>
void util_stuff();
2024-05-20 21:39:33 +01:00
int KEYS_TO_QUIT = 2;
2024-05-20 21:32:41 +01:00
void util_stuff(){
printf("Hello World!\n");
2024-05-20 21:39:33 +01:00
puts("TEST");
2024-05-20 21:32:41 +01:00
2024-05-20 21:39:33 +01:00
for(int i = 0; i < KEYS_TO_QUIT; i++){
wait_key_pressed();
}
2024-05-20 21:32:41 +01:00
return;
}