Remove comando dump.
[cascardo/declara.git] / rendimento.c
index 23ce5cf..f4ab9b2 100644 (file)
@@ -89,16 +89,6 @@ void rendimento_salva(struct declaracao *dec, FILE *f)
                        j->decimoterceiro, j->imposto, j->saida);
 }
 
-void rendimento_dump(struct declaracao *dec)
-{
-       int i;
-       struct rendimento *j;
-       for (i = 0; j = list_get(dec->rendimento, i); i++)
-               printf("rendimento: %s %s %013lld %013lld %013lld %013lld %s\n",
-                       j->cnpj, j->nome, j->rendimento, j->previdencia,
-                       j->decimoterceiro, j->imposto, j->saida);
-}
-
 static struct cmd cmd_rendimento = {
        .name = "rendimento",
        .run = run_rendimento,