#ifndef FUNCIONES_H
#define FUNCIONES_H
#include "struct.h"

int contarNumReg(char* nombreFich);

void rellenarVectorBin(char* nombreFich, struct alumno **alumnos, int tam);
    
int ordAsc(const struct alumno *a, const struct alumno *b);

int ordDes(const struct alumno *a, const struct alumno *b);

void ordenacion(struct alumno *alumnos, int tam, int(*funcion)(const struct alumno *, const struct alumno *));


#endif