*
*/
-#ifndef _IDX_H
-#define _IDX_H
+#ifndef _EMUFS_IDX_H
+#define _EMUFS_IDX_H
#include <string.h>
#include "emufs.h"
+#define EMUFS_IDX_EXT ".idx"
+
+typedef struct emufs_idx_t {
+ int block;
+ long int id_reg;
+} EMUFS_IDX;
+
+FILE* emufs_idx_abrir(EMUFS*, const char*);
+
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 */