Initial commit
This commit is contained in:
commit
441143482a
13 changed files with 230 additions and 0 deletions
22
utils.c
Normal file
22
utils.c
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#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("▐▌ ▐▛▚▖▐▌▐▌ ▐▌ ▐▌ ▐▌ ▐▌ ▐▌▐▌ ▐▌▐▌ ▐▌▐▌ \n");
|
||||
printf("▐▛▀▀▘▐▌ ▝▜▌▐▌▝▜▌▐▛▀▀▘▐▛▀▚▖ ▐▛▀▜▌▐▛▀▘ ▐▛▀▘ ▝▀▚▖\n");
|
||||
printf("▐▙▄▄▖▐▌ ▐▌▝▚▄▞▘▐▙▄▄▖▐▌ ▐▌ ▐▌ ▐▌▐▌ ▐▌ ▗▄▄▞▘\n");
|
||||
printf("\n");
|
||||
printf(" - Horno Simulator 2025 \n");
|
||||
printf("\n");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue