blob: a3ad2252ab74ad79beeddd85bc29eaaced1ffe9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* Static libraries are not portable, and I'm using a Linux system, so I wont
be using the supplied static library.
clang++ -std=c++11 -g *.cpp
*/
#include "fun.hpp"
// #include "MuestraPunteros.h"
int main(int argc, char ** argv) {
void * productos, * clientes;
cargaproductos(productos);
imprimeproductos(productos);
cargaclientes(clientes);
imprimeclientes(clientes);
cargapedidos(productos, clientes);
imprimereporte(clientes);
return 0;
}
|