blob: 4825688d24b785f2fb6b2802a3e05e934ecc2873 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: MuestraPunteros.h
* Author: cueva.r
*
* Created on 21 de septiembre de 2023, 06:43 AM
*/
#ifndef MUESTRAPUNTEROS_H
#define MUESTRAPUNTEROS_H
void imprimeclientes(void *);
void imprimeproductos(void *);
void imprimerepfinal(void *);
#endif /* MUESTRAPUNTEROS_H */
|