]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/indice_b.h
Retoques en los reportes
[z.facultad/75.06/emufs.git] / emufs / indice_b.h
index 43249f2e98d438ab4fcdebbdb30ea0a984d38452..b60e48ca8b79d82a85d3f54d9f56f018682a9e89 100644 (file)
@@ -42,6 +42,10 @@ INDICE_DATO emufs_indice_b_buscar(INDICE *idx, CLAVE clave);
 
 INDICE_DATO *emufs_indice_b_buscar_muchos(INDICE *idx, CLAVE clave, int *cant);
 
+CLAVE emufs_indice_b_obtener_menor_clave(INDICE *idx);
+
+CLAVE emufs_indice_b_obtener_mayor_clave(INDICE *idx);
+
 /* Private! */
 /** Lee un nodo desde el archivo */
 char *b_leer_nodo(INDICE *idx, int id);
@@ -54,5 +58,7 @@ void b_leer_header(char *src, B_NodoHeader *header);
  */
 B_NodoEntry *b_leer_claves(char *src, B_NodoHeader *header);
 
+CLAVE emufs_indice_b_obtener_sig_clave(INDICE *idx, CLAVE k);
+
 #endif