Adiciona macros para formatar valores em Real.
[cascardo/declara.git] / lib / util.h
1 /*
2  *  Copyright (C) 2015  Thadeu Lima de Souza Cascardo <cascardo@minaslivre.org>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #ifndef _UTIL_H
20 #define _UTIL_H
21
22 int set_llong(char *str, long long *val);
23 int set_int(char **args, int argc, int *val);
24 int set_string(char **args, int argc, char **str);
25
26 #define SET_INT_(suffix, command, attr) \
27 static int run_##suffix(struct declaracao *dec, char **args, int argc) \
28 { \
29         int val; \
30         int r = set_int(args, argc, &val); \
31         if (r) \
32                 return r; \
33         dec->attr = val; \
34         return 0; \
35 } \
36 static struct cmd cmd_##suffix = { \
37         .name = #command, \
38         .run = run_##suffix, \
39 };
40
41 #define SET_INT(attr) SET_INT_(attr, attr, attr)
42
43 #define SET_STRING_(suffix, command, attr) \
44 static int run_##suffix(struct declaracao *dec, char **args, int argc) \
45 { \
46         char *val; \
47         int r = set_string(args, argc, &val); \
48         if (r) \
49                 return r; \
50         dec->attr = val; \
51         return 0; \
52 } \
53 static struct cmd cmd_##suffix = { \
54         .name = #command, \
55         .run = run_##suffix, \
56 }
57
58 #define SET_STRING(attr) SET_STRING_(attr, attr, attr)
59
60 static inline long long reais(long long val)
61 {
62         return val / 100LL;
63 }
64
65 /* Sempre retorna um valor positivo. */
66 static inline int centavos(long long val)
67 {
68         if (val > 0LL)
69                 return (int) (val % 100LL);
70         else
71                 return (int) (-val % 100LL);
72 }
73
74 #define FMT_R "R$ %lld,%02d"
75 #define R(l) reais(l), centavos(l)
76
77 #endif