]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs_gui/articulos.c
* Agrego mas documentacion de las API's
[z.facultad/75.06/emufs.git] / emufs_gui / articulos.c
index f3df42d8f4909b53754af7469f964643528c64e5..598a888427b6a30d82dbc57b906acd269837b219 100644 (file)
@@ -103,7 +103,6 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
                        node = node->next;
                }
 
                        node = node->next;
                }
 
-               fprintf(stderr, "Creando articulos con bloque = %d\n", tam_bloque);
                tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
                for (node=inicio ; node ; node = node->next) {
                        if (node->type == XML_ELEMENT_NODE) {
                tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
                for (node=inicio ; node ; node = node->next) {
                        if (node->type == XML_ELEMENT_NODE) {
@@ -163,9 +162,9 @@ t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
 
 int art_liberar(t_LstArticulos *l)
 {
 
 int art_liberar(t_LstArticulos *l)
 {
+       t_Reg_Articulo *del;
        if (l == NULL) l = lst_articulos;
        if (l == NULL) return 1;
        if (l == NULL) l = lst_articulos;
        if (l == NULL) return 1;
-       t_Reg_Articulo *del;
 
        emufs_destruir(l->fp);
        while (l->primero) {
 
        emufs_destruir(l->fp);
        while (l->primero) {
@@ -439,7 +438,6 @@ int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_Ls
                        ini = fin+1;
                        fin = ini;
                        while (*fin!='\0') fin++;
                        ini = fin+1;
                        fin = ini;
                        while (*fin!='\0') fin++;
-                       fprintf(stderr, "INI=%s\n", ini);
                        memcpy(dst->presentacion, ini, fin-ini+1);
                        
                        ini = fin+1;
                        memcpy(dst->presentacion, ini, fin-ini+1);
                        
                        ini = fin+1;
@@ -523,7 +521,7 @@ void art_reformatear(int tipo, int tam_bloque, int tam_reg)
        PERR("Creo el archivo\n");
        nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
        if (nuevo == NULL) {
        PERR("Creo el archivo\n");
        nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
        if (nuevo == NULL) {
-               fprintf(stderr, "ARCHIVO NUEVO NO CREADO\n");
+               PERR("ARCHIVO NUEVO NO CREADO");
                return;
        }
 
                return;
        }