char *prop;
EMUFS_REG_SIZE size;
t_LstArticulos *tmp;
+ t_Articulo *un_articulo;
lst_articulos = NULL;
EMUFS_REG_ID id;
tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
/* Agrego los indices */
PERR("Voy a agregar un indice");
+ emufs_agregar_indice(tmp->fp, "desc", IND_EXAHUSTIVO, IND_B, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), 512);
emufs_agregar_indice(tmp->fp, "codigo", IND_PRIMARIO, IND_B, IDX_INT, 0, 512);
if (!tmp->fp) {
PERR("NO SE PUDO CREAR ARCHIVO ARTICULOS");
return 1;
}
+void art_consultas(char *s)
+{
+}
+