X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=base.c;h=5efa51ec5c5cec6739b14e4c6b7245446e33dfc5;hb=822baf841edc91c3e1bd1dab39306a426a508007;hp=e3c60ef2c006347ed90ca79b05c24bb59b3f9034;hpb=fb4f270f81bc22d21649a7188b7f2d72594ba877;p=cascardo%2Fdeclara.git diff --git a/base.c b/base.c index e3c60ef..5efa51e 100644 --- a/base.c +++ b/base.c @@ -87,6 +87,9 @@ static int run_dump(struct declaracao *dec, char **args, int argc) printf("cpf: %s\n", dec->cpf); printf("nome: %s\n", dec->nome); rendimento_dump(dec); + printf("pago: %lld.%02d\n", dec->pago / 100, dec->pago % 100); + printf("devido: %lld.%02d\n", dec->devido / 100, dec->devido % 100); + printf("restituicao: %lld.%02d\n", dec->restituicao / 100, dec->restituicao % 100); return 0; }