/* Creamos un handler EMUFS, luego un Indice B+ y testing... */
INDEXSPECS indice;
-indice.tam_bloque = 48;
+indice.tam_bloque = SIZE_B_PLUS_HEADER + sizeof(int)*4 + sizeof(int)*5;
indice.size_claves = (indice.tam_bloque - SIZE_B_PLUS_HEADER - sizeof(int))/2;
indice.size_hijos = indice.size_claves + sizeof(int);
indice.filename = "idxbplus_primary.idx";