first commit
This commit is contained in:
commit
51c233c7f5
10 changed files with 260 additions and 0 deletions
18
utils.c
Normal file
18
utils.c
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#include "utils.h"
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
void limpiarPantalla() {
|
||||
printf("\033[2J\033[H");
|
||||
}
|
||||
|
||||
void pausar() {
|
||||
printf("\nPresione ENTER para continuar...");
|
||||
getchar();
|
||||
}
|
||||
|
||||
void imprimirHeader() {
|
||||
printf("\n");
|
||||
printf(" - Horno Simulator 2026 \n");
|
||||
printf("\n");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue