blob: aaa34c900e6283083dab2de81f47cb7933688c99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <iostream>
#define MAXLEN 100
int cmpnumero(const void *p1, const void *p2);
int *leenumero(std::istream &in);
void cargaarreglo(void *&arreglo,
int (*cmpnumero)(const void *, const void *),
int *leenumero(std::istream &in),
const char *filename);
void imprimenumero(std::ostream &out, void *data);
|