+#define SIZE_B_PLUS_HEADER (sizeof(int)*2)
+
+/** Estructura que define un nodo B+. Para los nodos hojas, el ultimo valor de hijo, serĂ¡ el nro\r
+ * de nodo con el que se encadena el actual. (Lista de nodos a nivel hoja. Sequence Set).\r
+ */
+
+typedef struct _indexspecs_ {
+ unsigned int tam_bloque;
+ unsigned int size_claves;
+ unsigned int size_hijos;
+ char *filename;
+} INDEXSPECS;
+
+typedef struct _index_dat_ {
+ EMUFS_BLOCK_ID num_bloque;
+ CLAVE clave;
+} INDEX_DAT;
+
+typedef struct nodo_b_plus {\r