Um pequeno programa de teste para obter alguns campos de uma declaração.
[cascardo/libreceita.git] / decfile.h
1 /*
2  *  Copyright (C) 2012-2014  Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
3  *  Copyright (C) 2014  Alexandre Oliva <lxoliva@fsfla.org>
4  *
5  *  This program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License along
16  *  with this program; if not, write to the Free Software Foundation, Inc.,
17  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19
20 #ifndef _RNET_DECFILE_H
21 #define _RNET_DECFILE_H
22
23 #include "rnet_message.h"
24
25 #define RNET_HEADER_SIZE_2013 765
26 #define RNET_HEADER_HEAD_2013 111
27 #define RNET_HEADER_TAIL_2013  15
28 #define RNET_HEADER_SIZE_2014 793
29 #define RNET_HEADER_HEAD_2014 111
30 #define RNET_HEADER_TAIL_2014  15
31
32 struct rnet_decfile;
33 struct rnet_decfile * rnet_decfile_open(char *filename);
34 void rnet_decfile_close(struct rnet_decfile *decfile);
35 char *rnet_decfile_get_header_field(struct rnet_decfile *decfile, char *field);
36
37 char * rnet_decfile_get_header(struct rnet_decfile *decfile);
38 struct rnet_message * rnet_decfile_get_file(struct rnet_decfile *decfile);
39 char * rnet_decfile_get_file_hash(struct rnet_decfile *decfile);
40 char *rnet_decfile_get_line(struct rnet_decfile *decfile, int i);
41
42 #endif