+
+#ifndef _INDICES_H_
+#define _INDICES_H_
+
+#include <stdlib.h>
+#include <string.h>
+
+typedef struct _emu_fs_t EMUFS;
+
+typedef enum {IND_B_MAS, IND_B_ASC} INDICE_TIPO;
+
+typedef enum {IDX_FLOAT, IDX_INT} INDICE_TIPO_DATO;
+
+typedef union _data_ {
+ float f_clave;
+ int i_clave;
+} CLAVE;
+
+typedef struct _indices_h_ {
+ INDICE_TIPO tipo;
+ INDICE_TIPO_DATO tipo_dato;
+ int offset;
+
+ /** Agrega la clave k de posicion location en el
+ * indice de forma ordenada
+ */
+ int (*agregar_entrada)(struct _indices_h_ *idx, CLAVE k, int location);
+ /** Borra del indice la clave k */
+ int (*borrar_entrada)(struct _indices_h_ *idx, CLAVE k);
+ /** Determina si existe la clave k retornando su posicion o -1
+ * en caso fallido
+ */
+ int (*existe_entrada)(struct _indices_h_ *idx, CLAVE k);
+
+ char *nombre; /* nombre de busqueda */
+ char *filename; /* nombre del archivo indice */
+
+ struct _indices_h_ *sig;
+} INDICE;
+
+INDICE *emufs_indice_crear(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset);
+void emufs_indice_destruir(EMUFS *emu, INDICE *i);
+
+CLAVE emufs_indice_obtenet_clave(INDICE *idx, char *data);
+#endif
+