From 08a0c2e404f437c762c8b57ea62927dc29e14384 Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Fri, 28 May 2021 21:06:04 -0300 Subject: [PATCH] Assume mesmos limites em 2021 comparados com 2020. Signed-off-by: Thadeu Lima de Souza Cascardo --- lib/calcula.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/calcula.c b/lib/calcula.c index eba2abb..40c0536 100644 --- a/lib/calcula.c +++ b/lib/calcula.c @@ -35,6 +35,7 @@ static const long long dependente[ANO(MAX_ANOS)] = { [ANO(2018)] = 227508, [ANO(2019)] = 227508, [ANO(2020)] = 227508, + [ANO(2021)] = 227508, }; static const long long instrucao[ANO(MAX_ANOS)] = { @@ -44,6 +45,7 @@ static const long long instrucao[ANO(MAX_ANOS)] = { [ANO(2018)] = 356150, [ANO(2019)] = 356150, [ANO(2020)] = 356150, + [ANO(2021)] = 356150, }; long long deducao_dependente(struct declaracao *dec) @@ -175,6 +177,7 @@ static struct taxtable *table[ANO(MAX_ANOS)] = { [ANO(2018)] = table2017, [ANO(2019)] = table2017, [ANO(2020)] = table2017, + [ANO(2021)] = table2017, }; static const long long simples[ANO(MAX_ANOS)] = { @@ -184,6 +187,7 @@ static const long long simples[ANO(MAX_ANOS)] = { [ANO(2018)] = 1675434, [ANO(2019)] = 1675434, [ANO(2020)] = 1675434, + [ANO(2021)] = 1675434, }; static const long long obrigatoriedade[ANO(MAX_ANOS)] = { @@ -193,6 +197,7 @@ static const long long obrigatoriedade[ANO(MAX_ANOS)] = { [ANO(2018)] = 2855970, [ANO(2019)] = 2855970, [ANO(2020)] = 2855970, + [ANO(2021)] = 2855970, }; static long long imposto(struct taxtable *tt, long long tr, int verbose) -- 2.20.1