+int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset)
+{
+ INDICE *tmp;
+ tmp = emufs_indice_crear(emu, nombre, tipo, tipo_dato, offset);
+
+ if (tmp == NULL) return 0;
+
+ if (emu->indices==NULL)
+ emu->indices = tmp;
+ else {
+ tmp->sig = emu->indices;
+ emu->indices = tmp;
+ }
+ return 1;
+}
+