#include "funciones.h"
#include <stdlib.h>

int main (){
    FILE *fich=NULL, *fichMayus=NULL;
    char nombrefich[50];
    abrirFichero(&fich, nombrefich);

    if (fich!=NULL){ //Esto quiere decir que se pudo abrir el fichero "fich"
        fichMayus=generarDocumentoMayus(fich,nombrefich);
    } else{fprintf(stderr,"ERROR AL ABRIR FICHERO");}
    fclose(fichMayus);
    return 0;
}
