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