display.h + fix screendisply

This commit is contained in:
2024-12-12 12:05:08 +01:00
parent 0d2079da68
commit a242ad81d0
5 changed files with 20 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
#include <stdio.h>
#include "display.h"
void screenDisplay( unsigned short int **tab,int size)
{
@@ -8,6 +9,7 @@ void screenDisplay( unsigned short int **tab,int size)
{
printf("%hu ",tab[i][j]);
}
puts("");
}
}