An error occurred while loading the file. Please try again.
-
AIGLE STIVEN authoredf5270472
Forked from
TechDevPrintemps2022 / SokobanTechDev
16 commits ahead of the upstream repository.
main.c 211 B
#include <stdio.h>
#include "grid.h"
#include <stdbool.h>
int main(void){
bool run = true;
while(run){
char entry = fgetc(stdin);
switch(entry){
case 'q' :{
run = false;
break;
}
}
}
}