]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo1_bplus_main.c
Limpio un poco el codigo, sigo debuggeando... cosa rara: inserta los registros orden...
[z.facultad/75.06/emufs.git] / emufs / tipo1_bplus_main.c
index 11b6c3b7e5bd1e78e9cee075a4c26dbbab0f7abe..771b1a21caeff1af235e42d68b9bd57b8e600ebc 100644 (file)
@@ -41,10 +41,10 @@ int main (int argc,char* argv[])
        EMUFS_REG_SIZE len;
        int err=0;
        
-       texto="PARTE CONSTANTE, clave =";
-       
        emu = emufs_crear("test",T1,512,0);
        emufs_agregar_indice(emu,"claveidx",IND_PRIMARIO,IND_B_PLUS,IDX_INT,strlen(texto),tam_nodo);
+       
+       texto = "PARTE COSNSTANTE, clave =";
 /*REGISTRO 1*/ 
        clave.i_clave = 77;     
        texto2="termina el texto re bonito CLAVE = 77";
@@ -65,7 +65,7 @@ int main (int argc,char* argv[])
        PERR("REGISTRO 2 GRABADO");
        free(r);
 
-/*REGISTRO 3*/ 
+/*REGISTRO 3   
        texto2="Este es el fin del registro tres, puse tres en numero para que sea mas largo el texto CLAVE = 95";
        clave.i_clave = 95;     
        r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
@@ -75,7 +75,7 @@ int main (int argc,char* argv[])
        PERR("REGISTRO 3 GRABADO");
        free(r);
        
-/*REGISTRO 4*/ 
+/*REGISTRO 4   
        texto2="REGISTRO CUATRO CLAVE = 99";
        clave.i_clave = 99;     
        r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
@@ -85,7 +85,7 @@ int main (int argc,char* argv[])
        PERR("REGISTRO 4 GRABADO");
        free(r);
 
-/*REGISTRO 5*/ 
+/*REGISTRO 5   
        texto2="el quinto registro tiene un largo promedio como para entrar en el bloque CLAVE = 102";
        clave.i_clave = 102;    
        r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
@@ -96,7 +96,7 @@ int main (int argc,char* argv[])
        free(r);
 
 /*REGISTRO 6*/ 
-       texto2="El registro 6 no entra CLAVE = 106";
+/*     texto2="El registro 6 no entra CLAVE = 106";
        clave.i_clave = 106;    
        r = cargar_registro(texto, strlen(texto), clave, texto2, strlen(texto2));
        imprimir_reg(r, strlen(texto), strlen(texto)+strlen(texto2)+sizeof(CLAVE));
@@ -105,7 +105,7 @@ int main (int argc,char* argv[])
        PERR("REGISTRO 6 GRABADO");
        free(r);
        emufs_destruir(emu);
-
+*/
        return 0;
        
 }