#ifndef ESTRUCTURAS_H
    #define ESTRUCTURAS_H
    typedef struct {
        char titulo[50];
        char autor[50];
        float precio;
        int unidades;
    }libro;
#endif