Skip to content
Snippets Groups Projects
main.c 273 B
Newer Older
#include <stdio.h>
#include "grid.h"
#include <stdbool.h>
int main(void){
	
	bool run = true;
	while(run){
Arnaud Albiez's avatar
Arnaud Albiez committed
		struct Grid* grid = grid_new(5, 5);
		Affichage_grid(grid);
		char entry = fgetc(stdin);
		switch(entry){
			case 'q' :{
				run = false;
				break;
			}
		}
	}
}