]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/emufs.c
Retoques en los reportes
[z.facultad/75.06/emufs.git] / emufs / emufs.c
index 685f091795290b29135a3c7391f138f06056d18d..cc33ee38472b0bba99cb1c7df259ee3eef0a1278 100644 (file)
@@ -528,3 +528,16 @@ EMUFS_BLOCK_ID emufs_get_new_block_number(EMUFS *emu)
        fclose(fp);
        return num+1;
 }
        fclose(fp);
        return num+1;
 }
+
+INDICE *emufs_buscar_indice_por_nombre(EMUFS *emu, const char *nombre)
+{
+       INDICE *tmp;
+
+       tmp = emu->indices;
+       while (tmp) {
+               if (strcmp(tmp->nombre, nombre) == 0) break;
+               tmp = tmp->sig;
+       }
+       return tmp;
+}
+