]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indices.h
Saco funcion repetida (obtener_clave) y reemplazo llamada con
[z.facultad/75.06/emufs.git] / emufs / indices.h
index 3bcac43f015f9f6e2b35b4cd663caac6564152f5..ad2686c340c757402337c8112a908584852ad625 100644 (file)
@@ -13,14 +13,15 @@ typedef struct _emu_fs_t EMUFS;
 
 /** Dato guardado junto con la clave */
 typedef struct _reg_def_ {
-       unsigned long id;
-       unsigned long bloque;
+       long id;
+       long bloque;
 } INDICE_DATO;
 
 /** Tipos de Indices conocidos */
 typedef enum {
        IND_B, /**< Utilizacion de Arboles B */
-       IND_B_ASC /**< Utilizacion de Arboles B* */
+       IND_B_ASC, /**< Utilizacion de Arboles B* */
+       IND_B_PLUS
 } INDICE_TIPO;
 
 typedef enum {
@@ -128,4 +129,3 @@ int emufs_indice_es_menor(INDICE *idx, CLAVE c1, CLAVE c2);
 /** Compara 2 claves de la forma c1 == c2 */
 int emufs_indice_es_igual(INDICE *idx, CLAVE c1, CLAVE c2);
 #endif
-