X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/8c383afd3c15f7a916cc14f43066a04d9a3e7612..73a6ae0f1a0f50a482d164f24d5894105b4aea9f:/emufs/indice_bplus.h?ds=sidebyside diff --git a/emufs/indice_bplus.h b/emufs/indice_bplus.h index 7e88a2c..bb823e2 100644 --- a/emufs/indice_bplus.h +++ b/emufs/indice_bplus.h @@ -23,12 +23,12 @@ typedef struct nodo_b_plus { } NODO_B_PLUS; /** TODO */ -int emufs_b_plus_crear(INDEX *idx); -int emufs_b_plus_get_bloque(INDEX *idx, INDEX_DAT *query, int num_node); -int emufs_b_plus_insertar(INDEX *idx, INDEX_DAT *query); +int emufs_b_plus_crear(INDICE *idx); +int emufs_b_plus_get_bloque(INDICE *idx, INDEX_DAT *query, int num_node); +int emufs_b_plus_insertar(INDICE *idx, INDEX_DAT *query); int emufs_b_plus_actualizar_nodo(INDEX_DAT *dataset); int emufs_b_plus_buscar(); int emufs_b_plus_destuir(); -NODO_B_PLUS *b_plus_leer_nodo(INDEX *idx, int num); +NODO_B_PLUS *b_plus_leer_nodo(INDICE *idx, int num); #endif