X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/8d40bc6eee138ef1b3ada1191fb1b2467062171e..936a14b3dc26ede204ce5b022472cd245b8019ac:/emufs/emufs.c diff --git a/emufs/emufs.c b/emufs/emufs.c index d243861..760fc49 100644 --- a/emufs/emufs.c +++ b/emufs/emufs.c @@ -101,6 +101,7 @@ EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_b efs->tam_bloque = tam_bloque; efs->tam_reg = tam_reg; efs->nombre = str_dup(filename); + efs->indices = NULL; /* Abre archivo de datos. */ strcpy(name, filename); @@ -341,3 +342,19 @@ int debug_ver_estadisticas(EMUFS* efs) return 0; } +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; +} +