]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - gui/articulos.h
8472556cf8e4da06739759894230f4a541b7cfc0
[z.facultad/75.06/emufs.git] / gui / articulos.h
1
2 #ifndef _ARTICULOS_H_
3 #define _ARTICULOS_H_
4
5 #include <libxml/parser.h>
6 #include <libxml/tree.h>
7 #include <string.h>
8 #include "malloc_debug.h"
9
10 /* FACTURAS!!
11         char numero[9];
12         char emision[9];
13         char vencimiento[9];
14         char numero_remito[9];
15         char estado[3];
16         char fp[3];
17         char procdoi[6];
18         char ctacte[6];
19         char cheque[19];
20         char *nota;
21 */
22         
23 typedef struct _articulo_ {
24         char numero[9];
25         char desc[51];
26         char presentacion[31];
27         char existencia[9];
28         char ubicacion[31];
29         char pvu[9];
30         char emin[9];
31 } t_Articulo;
32
33 typedef struct _lista_articulos_ {
34         t_Articulo *array;
35         unsigned int cant;
36 } t_LstArticulos;
37
38 t_LstArticulos *art_cargar(const char *filename);
39 int art_liberar(t_LstArticulos *l);
40 t_Articulo *art_obtener(t_LstArticulos *, const char *numero);
41 //t_Articulo *art_obtener(t_LstArticulos *, int numero);
42
43 #endif
44