X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/7a86d06abb03ced86951067cf341f228acfc9f30..a7a781b6b1a260c882ad779a9ecdaa517d1a6846:/emufs/idx.h?ds=sidebyside diff --git a/emufs/idx.h b/emufs/idx.h index a2c9736..ca509c7 100644 --- a/emufs/idx.h +++ b/emufs/idx.h @@ -34,16 +34,23 @@ * */ -#ifndef _IDX_H -#define _IDX_H +#ifndef _EMUFS_IDX_H +#define _EMUFS_IDX_H #include #include "emufs.h" +#define EMUFS_IDX_EXT ".idx" + +typedef struct emufs_idx_t { + int block; + long int id_reg; +} EMUFS_IDX; + int emufs_idx_buscar_mayor_id(EMUFS *); int emufs_idx_buscar_registro(EMUFS *, int); int emufs_idx_agregar(EMUFS *, int , int); -#endif /* _IDX_H */ +#endif /* _EMUFS_IDX_H */