--- /dev/null
+#ifndef _B_PLUS_H_
+#define _B_PLUS_H_
+#include <stdio.h>
+#include <stdlib.h>
+#include "emufs.h"
+typedef union _clave_b_plus {
+ int num;
+ /*fixme*/
+}CLAVE_B_PLUS;
+\r
+/** 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 nodo_b_plus {
+ int es_hoja;\r
+ int nivel; /** Nivel del nodo */
+ int cant; /** Cantidad de items en el nodo */\r
+ int *claves; /** Claves del nodo */\r
+ int *hijos; /** Para nodo interno, ref nodos sucesores. Nodo hoja, ref a nro bloque en .dat */
+} NODO_B_PLUS;
+
+
+
+/** TODO */
+int b_plus_crear();
+int b_plus_insertar();
+int b_plus_eliminar();
+int b_plus_buscar();
+int b_plus_destuir();
+
+
+#endif