10 lines
145 B
C
10 lines
145 B
C
#ifndef HORNO_H
|
|
#define HORNO_H
|
|
|
|
#include "empanada.h"
|
|
|
|
#define MAX_EMPANADAS 10
|
|
|
|
void mostrarEmpanadas(Empanada horno[], int cantidad);
|
|
|
|
#endif
|