X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/59919f765235b85942e36bfb4f49cca55e509073..f78b0c305fbd6faa89e3f211d5d97a16204fa7bf:/emufs/b_plus.h?ds=inline diff --git a/emufs/b_plus.h b/emufs/b_plus.h index 70dae0c..ba0b775 100644 --- a/emufs/b_plus.h +++ b/emufs/b_plus.h @@ -32,11 +32,12 @@ typedef struct nodo_b_plus { /** TODO */ int emufs_b_plus_crear(INDEXSPECS *idx); -int emufs_b_plus_get_bloque(INDEXSPECS *idx, INDEX_DAT *dataset); +int emufs_b_plus_get_bloque(INDEXSPECS *idx, INDEX_DAT *query); +int emufs_b_plus_insertar(INDEXSPECS *idx, INDEX_DAT *query); int emufs_b_plus_actualizar_nodo(INDEX_DAT *dataset); int emufs_b_plus_buscar(); int emufs_b_plus_destuir(); int b_plus_insertar_clave(INDEXSPECS *, INDEX_DAT *); NODO_B_PLUS *b_plus_leer_nodo(INDEXSPECS *idx, int num); -#endif +#endif