Don't emit text records twice
[infodrom/dtaus] / dtaus.c
1 /*
2     dtaus.c - Belegloser Datenträgeraustausch mit einer Bank
3     Copyright (c) 1996,8,2001-4  Martin Schulze <joey@infodrom.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 2 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
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
18
19     $Id$
20  */
21
22 #include "dtaus.h"
23 #include "bigint.h"
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <ctype.h>
28 #include <time.h>
29 #include <malloc.h>
30 #include "latex.h"
31
32 #define DEFAULT_EURO
33 #ifndef DEFAULT_EURO
34 int use_euro = 0;
35 #else
36 int use_euro = 1;
37 #endif
38
39 /*
40  *  First: Some control structures
41  */
42
43 typedef struct
44 {
45   char *name;
46   unsigned short int pos;
47   unsigned short int len;
48   int type;
49 } dtaus_record;
50
51 #define REC_A   1
52 #define REC_C   2
53 #define REC_E   3
54
55 #define REQ     1
56 #define OPT     2
57 #define IGN     3
58
59 dtaus_record recA[] = {
60   {"Art", 5, 2, REQ},
61   {"Name", 23, 27, REQ},
62   {"Konto", 60, 10, REQ},
63   {"BLZ", 7, 8, REQ},
64   {"Referenz", 70, 10, OPT},
65   {"Datum", 50, 6, IGN},
66   {"Ausfuehrung", 95, 8, OPT},
67   {"Currency", 127, 1, OPT},
68   {"Euro", 127, 1, OPT},
69   {"DM", 127, 1, OPT},
70   {NULL, 0, 0, 0}
71 };
72
73 #define A_TRANS 0
74 #define A_NAME  1
75 #define A_KTO   2
76 #define A_BLZ   3
77 #define A_REF   4
78 #define A_DATE  5
79 #define A_TODO  6
80 #define A_CURR  7
81 #define A_EURO  8
82 #define A_DM    9
83 #define A_LEN   10
84 #define A_LOOP  7
85
86 dtaus_record recC[] = {
87   {"Name", 93, 27, REQ},
88   {"Konto", 21, 10, REQ},
89   {"BLZ", 13, 8, REQ},
90   {"Transaktion", 44, 5, REQ},
91 #ifndef DEFAULT_EURO
92   {"Betrag", 50, 11, REQ},
93 #else
94   {"Betrag", 79, 11, REQ},
95 #endif
96   {"Zweck", 155, 27, REQ},
97   {"myName", 128, 27, OPT},
98   {"myKonto", 69, 10, OPT},
99   {"myBLZ", 61, 8, OPT},
100   {"Text", 187, 29, OPT},
101   {"Extension", 216, 29, OPT},
102   {"Currency", 182, 1, IGN},
103 #ifndef DEFAULT_EURO
104   {"Betrag-Euro", 79, 11, IGN},
105 #else
106   {"Betrag-DM", 50, 11, IGN},
107 #endif
108   {NULL, 0, 0, 0}
109 };
110
111 #define C_NAME  0
112 #define C_KTO   1
113 #define C_BLZ   2
114 #define C_TRANS 3
115 #define C_VAL   4
116 #define C_ZWECK 5
117 #define C_MYNAM 6
118 #define C_MYKTO 7
119 #define C_MYBLZ 8
120 #define C_TEXT  9
121 #define C_EXT  10
122 #define C_EURO 11
123 #ifndef DEFAULT_EURO
124 #define C_EUR  12
125 #else
126 #define C_DM   12
127 #endif
128 #define C_LEN  13
129 #define C_LOOP 11
130
131 #define MAX_TEXT 14
132
133 dtaus_record recE[] = {
134   {"Anzahl", 10, 7, IGN},
135 #ifndef DEFAULT_EURO
136   {"Summe", 17, 13, IGN},
137 #else
138   {"Summe", 64, 13, IGN},
139 #endif
140   {"Kontos", 30, 17, IGN},
141   {"BLZs", 47, 17, IGN},
142 #ifndef DEFAULT_EURO
143   {"Summe-Euro", 64, 13, IGN},
144 #else
145   {"Summe-DM", 17, 13, IGN},
146 #endif
147   {NULL, 0, 0, 0}
148 };
149
150 #define E_COUNT 0
151 #define E_VAL   1
152 #define E_KTO   2
153 #define E_BLZ   3
154 #ifndef DEFAULT_EURO
155 #define E_EUR   4
156 #else
157 #define E_DM    4
158 #endif
159 #define E_LEN   5
160
161 /*
162  *  Second: Some low level routines
163  */
164
165 size_t dtaus_nextrec (void **buf, FILE *f)
166 {
167   memset (buf, 0, 128);
168   return fread(buf, 128, 1, f);
169 }
170
171 char *upcase(char *s)
172 {
173   static char x[100];
174   static char *xp;
175   char *cp;
176
177   for (cp=s,xp=x; *cp; cp++,xp++) {
178     if (strchr(" 0123456789.,&-/+*$%ABCDEFGHIJKLMNOPQRSTUVWXYZ",*cp)) {
179         *xp = *cp;
180     } else if (strchr("abcdefghijklmnopqrstuvwxyz",*cp)) {
181       *xp = toupper(*cp);
182     } else if (strchr ("üÜäÄöÖß", *cp)) {
183       switch (*cp) {
184       case 'ü': *(xp++) = 'U'; *xp='E'; break;
185       case 'Ü': *(xp++) = 'U'; *xp='E'; break;
186       case 'ä': *(xp++) = 'A'; *xp='E'; break;
187       case 'Ä': *(xp++) = 'A'; *xp='E'; break;
188       case 'ö': *(xp++) = 'O'; *xp='E'; break;
189       case 'Ö': *(xp++) = 'O'; *xp='E'; break;
190       case 'ß': *(xp++) = 'S'; *xp='S'; break;
191       }
192     } else
193       /*
194        * Filter out all other characters since credit institutes won't
195        * accept the file otherwise.
196        */
197       *xp = ' ';
198   }
199   *xp = '\0';
200
201   return x;
202 }
203
204 char *downcase(char *s)
205 {
206   static char x[100];
207   char *cp;
208
209   memset (x, 0, sizeof (x));
210   strncpy (x, s, 99);
211   
212   for (cp=x;*cp;cp++)
213     if (isupper(*cp))
214       *cp = tolower(*cp);
215   return x;
216 }
217
218 char *strip_spaces (char *s)
219 {
220   int i;
221   char *p;
222
223   for (i=strlen(s);(s[i-1] == ' '||s[i-1] == '\t')&&i>0; i--)
224     s[i-1] = '\0';
225   for (p=s; *p==' '; p++);
226   return p;
227 }
228
229 char *strip_zeros (char *s)
230 {
231   char *p;
232
233   for (p=s; *p=='0'; p++);
234   return p;
235 }
236
237 char *strip_nondigits (char *s)
238 {
239   char *p;
240   char *x;
241
242   for (x=s,p=s;*x;x++)
243     if (isdigit (*x))
244       *(p++) = *x;
245   *(p++) = '\0';
246
247   return s;
248 }
249
250 char dtaus_char (void *buf, unsigned int pos)
251 {
252   static char res;
253   char *bufp = (char *)buf;
254
255   bufp+=pos;
256   memcpy(&res, bufp, 1);
257   return res;
258 }
259
260 char *string2real(char *s)
261 {
262   static char res[20];
263   char *cp = s;
264
265   cp+=strlen(s)-2;
266   strncpy(res, s, strlen(s)-2);
267   res[strlen(s)-2] = '.';
268   res[strlen(s)-1] = s[strlen(s)-2];
269   res[strlen(s)] = s[strlen(s)-1];
270   return res;
271 }
272
273 char *real2string(char *s)
274 {
275   static char res[20];
276   char *cp;
277   char *xp;     /* only to avoid a GCC warning */
278
279   strncpy(res, s, sizeof(res)-1);
280   res[sizeof(res)-1] = 0;
281   for (cp=res; *cp&&!(*cp == ',')&&!(*cp == '.');cp++);
282
283   if ((cp-res) >= (sizeof(res)-3)) { 
284     /* Bail out, since the number is too large, shouldn't be possible though. */
285     fprintf (stderr, "Value %s too large.\n", res);
286     exit (1);
287   }
288
289   if (*cp == '.' || *cp == ',') {
290     if (*(cp+1)) {
291       /* 1st decimal place */
292       xp = cp+1;
293       if (*xp && isdigit(*xp))
294         *(cp++) = *xp;
295       else
296         *(cp++) = '0';
297       /* 2nd decimal place */
298       xp = cp+1;
299       if (*xp && isdigit(*xp))
300         *(cp++) = *xp;
301       else
302         *(cp++) = '0';
303     } else {
304       *(cp++) = '0';
305       *(cp++) = '0';
306     }
307   } else {
308     *(cp++) = '0';
309     *(cp++) = '0';
310   }
311   *cp = '\0';
312   return res;
313 }
314
315 /*
316  * Return the last digit of the year as character
317  */
318 char get_date_lastdigit()
319 {
320   time_t timer;
321   struct tm *loctime;
322
323   timer = time ( NULL );
324   loctime = localtime(&timer);
325   return loctime->tm_year % 10 + '0';
326 }
327
328 char *string2trans (char *s)
329 {
330   static char res[30];
331
332   res[0] = '\0';
333   if (!strcmp(s, "04000"))
334     sprintf (res, "Abbuchung");
335   else if (!strcmp(s, "05000"))
336     sprintf (res, "Einzug");
337   else if (!strcmp(s, "05005"))
338     sprintf (res, "E-Cash");
339   else if (!strcmp(s, "05006"))
340     sprintf (res, "E-Cash-A");
341   else if (!strcmp(s, "51000"))
342     sprintf (res, "Gutschrift");
343   else if (!strcmp(s, "53000"))
344     sprintf (res, "Lohn");
345   else if (!strncmp(s, "5400", 4))
346     sprintf (res, "Vermögen %c",s[4]);
347   /*  else if (!strcmp(s, "56000"))
348     sprintf (res, ""); / * Überweisung öffentlicher Kassen */
349   return res;
350 }
351
352 char *trans2string (char *s)
353 {
354   static char res[30];
355   char *cp;
356
357   res[0] = '\0';
358   if (!strcmp(s, "Abbuchung"))
359     sprintf (res, "04000");
360   else if (!strcmp(s, "Einzug"))
361     sprintf (res, "05000");
362   else if (!strcmp(s, "E-Cash"))
363     sprintf (res, "05005");
364   else if (!strcmp(s, "E-Cash-A"))
365     sprintf (res, "05006");
366   else if (!strcmp(s, "Gutschrift"))
367     sprintf (res, "51000");
368   else if (!strcmp(s, "Lohn"))
369     sprintf (res, "53000");
370   else {
371     cp = NULL;
372     if (!strncmp(s, "Vermögen", 8))
373       cp = s+8;
374     if (!strncmp(s, "Vermoegen", 9))
375       cp = s+9;
376
377     if (!cp) {
378       fprintf (stderr, "Unbekannte Transaktion `%s'\n", res);
379       exit (1);
380     }
381
382     /*
383       Vermögen --> 5400<heutiges Jahr>
384       Vermögen 8 -> 5400<8>
385       Vermögen 2003 -> 5400<3>
386      */
387
388     if (*cp) while (!isspace(*cp)) cp++;
389     while (isspace(*cp)) cp++;
390
391     if (!*cp || !isdigit(*cp))
392       sprintf (res, "5400%c",get_date_lastdigit());
393     else {
394       while (isdigit(*cp)) cp++;
395       sprintf (res, "5400%c",*(cp-1));
396     }
397   }
398   /*  else if (!strcmp(s, ""))
399     sprintf (res, "56000"); / * Überweisung öffentlicher Kassen */
400   return res;
401 }
402
403 char *string2ext (char *s)
404 {
405   static char res[30];
406
407   res[0] = '\0';
408   if (!strcmp(s, "01"))
409     sprintf (res, "Kunde");
410   else if (!strcmp(s, "02"))
411     sprintf (res, "Text");
412   else if (!strcmp(s, "03"))
413     sprintf (res, "Auftraggeber");
414   return res;
415 }
416
417 char *ext2string (char *s)
418 {
419   static char res[3];
420
421   res[0] = '\0';
422   if (!strcmp(s, "Kunde"))
423     sprintf (res, "01");
424   else if (!strcmp(s, "Text"))
425     sprintf (res, "02");
426   else if (!strcmp(s, "Auftraggeber"))
427     sprintf (res, "03");
428   return res;
429 }
430     
431 unsigned long int dtaus_int(void *buf, unsigned int pos, unsigned int len)
432 {
433   char tmp[30];
434   char *bufp = (char *)buf;
435   static unsigned long int res;
436
437   bufp+=pos;
438   memcpy(tmp, bufp, len);
439   tmp[len] = '\0';
440   sscanf(tmp, "%lu", &res);
441   return res;
442 }
443
444 /*
445  * returns the first word in this line, returns it and shortens the
446  * line.
447  */
448 char *extract_ident (char *line)
449 {
450   char *c, *x, *y;
451   static char word[30];
452
453   if (strlen(line) > 0) {
454     x = strchr (line, ' ');
455     y = strchr (line, '\t');
456
457     if (!x && !y) {
458         strncpy(word, line, 29);
459         line[0] = '\0';
460         return word;
461     }
462
463     /* Check which index returns the lower value, and check if the
464        value is non-NULL */
465     if ((c = (x && x<y)?x:(y?y:x))) { 
466       strncpy(word, line, c - line);
467       word[c-line] = '\0';
468       for (;*c == '\t' || *c == ' '; c++);
469       for (x=line; *c; c++,x++)
470         *x = *c;
471       *x = '\0';
472       strcpy(word, downcase(word));
473       return word;
474     }
475     return NULL;
476   }
477   return line;
478 }
479
480 /*
481  * Pads a string with zero's on the left side.
482  */
483 char *padzeroclip (char *s, int len)
484 {
485   char *p, *q;
486
487   if (strlen(s) == len) return s;
488   if (strlen(s) > len) {
489       q=s+len;
490       *(q--) = '\0';
491       return s;
492   }
493
494   q=s+len;
495   *(q--) = '\0';
496   for (p=s+strlen(s)-1;p>=s;p--)
497     *(q--)=*p;
498   for (;q>=s;) *(q--)='0';
499   return s;
500 }
501
502 int rec_index(char *ident, int type)
503 {
504   int i;
505   dtaus_record *rec = NULL;
506
507   switch (type) {
508   case REC_A:   rec = recA; break;
509   case REC_C:   rec = recC; break;
510   case REC_E:   rec = recE; break;
511   }
512
513   for (i=0; (rec[i].name); i++) {
514     if (!strcmp(ident, downcase(rec[i].name)))
515       return i;
516   }
517
518   return -1;
519 }
520
521 size_t control_nextline (void **buf, int len, FILE *f)
522 {
523   char line[100];
524   char tmp[100];
525   char *cp;
526   int i;
527
528   memset (line, 0, sizeof(line));
529   memset (buf, 0, len);
530   cp = line;
531
532   while (!strlen(line) && (cp = fgets(line, 100, f))) {
533     if (strlen(line)) {
534       if (line[0] != '#') {
535         if (line[strlen(line)-1] != '\n') { 
536           strcpy(tmp, line);
537           while (tmp[strlen(tmp)-1] != '\n' && (cp = fgets(tmp, 100, f)));
538         } else
539           line[strlen(line)-1] = '\0';
540         if (line[strlen(line)-1] == '\r')
541           line[strlen(line)-1] = '\0';
542         for (i=strlen(line);(line[i-1] == ' '||line[i-1] == '\t')&&i>0; i--)
543           line[i-1] = '\0';
544         if (line[0] == '#')
545           line[0] = '\0';
546       } else
547         line[0] = '\0';
548     }
549   }
550   for (cp=line; *cp==' '; cp++);
551
552   if (strlen(cp)) {
553     memcpy(buf, cp, strlen(cp));
554     return 1;
555   } else
556     return 0;
557 }
558
559 /*
560  * Return the current date nicely formatted
561  */
562 char *get_date()
563 {
564   static char res[10];
565   time_t timer;
566   struct tm *loctime;
567
568   timer = time ( NULL );
569   loctime = localtime(&timer);
570   sprintf(res, "%02d.%02d.%02d", loctime->tm_mday, loctime->tm_mon+1, loctime->tm_year % 100);
571   return res;
572 }
573
574 /*
575  *  Prepare a record A according to the specs.
576  *  See dtaus.txt for explanation
577  */
578 void dtaus_prepareA (char *buf)
579 {
580   int i;
581   time_t timer;
582   struct tm *loctime;
583   char tmp[10];
584
585   memset (buf, 0, 129);
586   timer = time ( NULL );
587   loctime = localtime(&timer);
588
589   buf[0] = '0';
590   buf[1] = '1';
591   buf[2] = '2';
592   buf[3] = '8';
593   buf[4] = 'A';
594   for (i=15;i<15+8; i++) buf[i] = '0';          /* A5 */
595   sprintf(tmp, "%02d%02d%02d", loctime->tm_mday, loctime->tm_mon+1, loctime->tm_year % 100);
596   for (i=0; i<6; i++) buf[50+i] = tmp[i];       /* A7 (Date) */
597   for (i=56;i<56+4; i++) buf[i] = ' ';          /* A8 */
598   for (i=70;i<70+10; i++) buf[i] = '0';         /* A10 */
599   for (i=80;i<80+48; i++) buf[i] = ' ';         /* A11 */
600   if (use_euro)
601     buf[recA[A_CURR].pos] = '1';                                /* A12 (Currency) */
602   else
603     buf[recA[A_CURR].pos] = ' ';                                /* A12 (Currency) */
604 }
605
606 /*
607  *  Prepare a record C according to the specs.
608  *  See dtaus.txt for explanation
609  */
610 void dtaus_prepareC (char *buf, int normaltext, int maxtext)
611 {
612   int i;
613   int appendix = 0;
614
615   memset (buf, 0, 257);
616
617   if (normaltext)
618     appendix = 1;
619   appendix += maxtext;
620   i = 187 + (appendix * 29);
621
622   /* Bail out if the number is too large, shouldn't be possible though */
623   if (i >= 1000)
624     exit (1);
625
626   buf[0] = (i/1000)+48;i-=(i/1000)*100;
627   buf[1] = (i/100)+48;i-=(i/100)*100;
628   buf[2] = (i/10)+48;i-=(i/10)*10;
629   buf[3] = i+48;
630   buf[4] = 'C';
631
632   for (i=31;i<31+13; i++) buf[i] = '0';         /* C6 */
633   buf[49] = ' ';                                /* C8 */
634   for (i=50;i<50+11; i++) buf[i] = '0';         /* C9 (Betrag) */
635   for (i=79;i<79+11; i++) buf[i] = '0';         /* C12 (Betrag Euro) */
636   for (i=90;i<90+3; i++) buf[i] = ' ';          /* C13 */
637   for (i=93;i<90+27; i++) buf[i] = ' ';         /* C14a (Kunde) */
638   for (i=120;i<120+8; i++) buf[i] = ' ';        /* C14b */
639   if (use_euro)
640     buf[recC[C_EURO].pos] = '1';                                /* C17a (Currency) */
641   else
642     buf[recC[C_EURO].pos] = ' ';                                /* C17a (Currency) */
643   for (i=183;i<183+2; i++) buf[i] = ' ';        /* C17b */
644   for (i=187;i<187+(29*2); i++) buf[i] = ' ';   /* C19-C22 (misc text) */
645   for (i=245;i<245+11; i++) buf[i] = ' ';       /* C23 */
646
647   buf[185+0] = (appendix/10)+48;appendix-=(appendix/10)*10;
648   buf[185+1] = appendix+48;
649 }
650
651 /*
652  *  Prepare a record E according to the specs.
653  *  See dtaus.txt for explanation
654  */
655 void dtaus_prepareE (char *buf)
656 {
657   int i;
658
659   memset (buf, 0, 129);
660   buf[0] = '0';
661   buf[1] = '1';
662   buf[2] = '2';
663   buf[3] = '8';
664   buf[4] = 'E';
665   for (i=5;i<5+5; i++) buf[i] = ' ';    /* E3 */
666   for (i=17;i<17+13; i++) buf[i] = '0'; /* E8 (Check Betrag) */
667   for (i=64;i<64+13; i++) buf[i] = '0'; /* E8 (Check Euro) */
668   for (i=77;i<77+51; i++) buf[i] = ' '; /* E9 */
669 }
670
671 int dtaus_writeA(FILE *f, char **values)
672 {
673   char buf[129];
674   char tmp[30];
675   int i;
676   
677   for (i=0; (recA[i].name); i++)
678     if ((recA[i].type == REQ) && !values[i]) {
679       fprintf (stderr, "Anfangsdatensatz ist nicht vollständig, kein %s.\n", recA[i].name);
680       return 0;
681     }
682   if (!(((values[A_TRANS][0] == 'L')||(values[A_TRANS][0] == 'G'))
683         &&((values[A_TRANS][1] == 'B')||(values[A_TRANS][1] == 'K')))) {
684     fprintf (stderr, "Ungültiger Typ, nur LK, GK, LB oder GB erlaubt.\n");
685     return 0;
686   }
687
688   i=A_NAME;if (values[i] && strlen(values[i]) > recA[i].len)
689     values[i][recA[i].len] = '\0';
690
691   dtaus_prepareA(buf);
692   buf[5] = values[A_TRANS][0];
693   buf[6] = values[A_TRANS][1];
694   sprintf (tmp, "%s", padzeroclip (strip_nondigits (values[A_BLZ]),recA[A_BLZ].len));
695   for (i=0; i<recA[A_BLZ].len; i++) buf[recA[A_BLZ].pos+i] = tmp[i];
696   sprintf (tmp, "%-27.27s", upcase(values[A_NAME]));
697   for (i=0; i<27; i++) buf[recA[A_NAME].pos+i] = tmp[i];
698   if (values[A_TODO]) {
699     sprintf (tmp, "%s", padzeroclip (strip_nondigits (values[A_TODO]),recA[A_TODO].len));
700     for (i=0; i<recA[A_TODO].len; i++) buf[recA[A_TODO].pos+i] = tmp[i];
701   }
702   sprintf (tmp, "%s", padzeroclip (strip_nondigits (values[A_KTO]),recA[A_KTO].len));
703   for (i=0; i<recA[A_KTO].len; i++) buf[recA[A_KTO].pos+i] = tmp[i];
704
705   fputs(buf, f);
706   return 1;
707 }
708
709 int dtaus_writeC(FILE *f, char **valuesA, char **values, char **text)
710 {
711   char buf[257];
712   char appendix[129];
713   char tmp[30];
714   int i, k;
715   int maxtext = 0;
716   int fieldnr;
717
718   /* Just count */
719   if (text) for (maxtext=0;text[maxtext];maxtext++);
720
721 #if DEBUG
722   for (i=0; (recC[i].name); i++)
723     if (values[i])
724       printf ("%s: %s\n", recC[i].name, values[i]);
725 #endif
726
727   for (i=0; (recC[i].name); i++)
728     if ((recC[i].type == REQ) && !values[i]) {
729       fprintf (stderr, "Datensatz ist nicht vollständig, kein %s.\n", recC[i].name);
730       return 0;
731     }
732   sprintf (tmp, "%s", trans2string(values[C_TRANS]));
733   if (!strlen(tmp)) {
734     fprintf (stderr, "Ungültige Transaktion, nur Abbuchung, Einzug, E-Cash, E-Cash-A, Gutschrift und Lohn erlaubt.\n");
735     return 0;
736   }
737
738   i=C_TEXT;if (values[i] && strlen(values[i]) > recC[i].len)
739     values[i][recC[i].len-2] = '\0';
740   i=C_ZWECK;if (values[i] && strlen(values[i]) > recC[i].len)
741     values[i][recC[i].len] = '\0';
742   i=C_MYNAM;if (values[i] && strlen(values[i]) > recC[i].len)
743     values[i][recC[i].len] = '\0';
744   i=C_TEXT;if (values[i] && strlen(values[i]) > recC[i].len)
745     values[i][recC[i].len] = '\0';
746
747   dtaus_prepareC (buf, values[C_TEXT] != NULL, maxtext);
748   for (i=0; i<5; i++) buf[recC[C_TRANS].pos+i] = tmp[i];
749   if (values[C_MYBLZ])
750     sprintf (tmp, "%s", padzeroclip (strip_nondigits (values[C_MYBLZ]),8));
751   else
752     sprintf (tmp, "%s", padzeroclip (strip_nondigits (valuesA[A_BLZ]),8));
753   for (i=0; i<recC[C_MYBLZ].len; i++) buf[5+i] = tmp[i];
754   for (i=0; i<recC[C_MYBLZ].len; i++) buf[recC[C_MYBLZ].pos+i] = tmp[i];
755   sprintf (tmp, "%s", padzeroclip (strip_nondigits (values[C_BLZ]),8));
756   for (i=0; i<recC[C_BLZ].len; i++) buf[recC[C_BLZ].pos+i] = tmp[i];
757   sprintf (tmp, "%s", padzeroclip (strip_nondigits (values[C_KTO]),10));
758   for (i=0; i<recC[C_KTO].len; i++) buf[recC[C_KTO].pos+i] = tmp[i];
759   sprintf (tmp, "%s", padzeroclip (real2string(values[C_VAL]),11));
760 #ifndef DEFAULT_EURO
761   if (!use_euro)
762     for (i=0; i<recC[C_VAL].len; i++) buf[recC[C_VAL].pos+i] = tmp[i];
763   else
764     for (i=0; i<recC[C_EUR].len; i++) buf[recC[C_EUR].pos+i] = tmp[i];
765 #else
766   if (use_euro)
767     for (i=0; i<recC[C_VAL].len; i++) buf[recC[C_VAL].pos+i] = tmp[i];
768   else
769     for (i=0; i<recC[C_DM].len; i++) buf[recC[C_DM].pos+i] = tmp[i];
770 #endif
771   if (values[C_MYKTO])
772     sprintf (tmp, "%s", padzeroclip (strip_nondigits (values[C_MYKTO]),10));
773   else
774     sprintf (tmp, "%s", padzeroclip (strip_nondigits (valuesA[A_KTO]),10));
775   for (i=0; i<recC[C_MYKTO].len; i++) buf[recC[C_MYKTO].pos+i] = tmp[i];
776   sprintf (tmp, "%-27.27s", upcase(values[C_NAME]));
777   for (i=0; i<recC[C_NAME].len; i++) buf[recC[C_NAME].pos+i] = tmp[i];
778   if (values[C_MYNAM])
779     sprintf (tmp, "%-27.27s", upcase(values[C_MYNAM]));
780   else
781     sprintf (tmp, "%-27.27s", upcase(valuesA[A_NAME]));
782   for (i=0; i<recC[C_MYNAM].len; i++) buf[recC[C_MYNAM].pos+i] = tmp[i];
783   sprintf (tmp, "%-27.27s", upcase(values[C_ZWECK]));
784   for (i=0; i<recC[C_ZWECK].len; i++) buf[recC[C_ZWECK].pos+i] = tmp[i];
785
786   if (values[C_TEXT]) {
787     buf[recC[C_TEXT].pos+0] = '0';
788     buf[recC[C_TEXT].pos+1] = '2';
789     sprintf (tmp, "%-27.27s", upcase(values[C_TEXT]));
790     for (i=0; i<recC[C_TEXT].len-2; i++) buf[recC[C_TEXT].pos+2+i] = tmp[i];
791   }
792
793   if (text) {
794     buf[recC[C_EXT].pos+0] = '0';
795     buf[recC[C_EXT].pos+1] = '2';
796     sprintf (tmp, "%-27.27s", upcase(text[0]));
797     for (i=0; i<recC[C_EXT].len-2; i++) buf[recC[C_EXT].pos+2+i] = tmp[i];
798   }
799
800   fputs(buf, f);
801
802   if (text && maxtext > 1) {
803     fieldnr=1;
804     while (fieldnr<maxtext) {
805       memset (appendix, ' ', 128);
806       appendix[128] = '\0';
807       for (k=0; k<4 && (fieldnr+k)<maxtext; k++) {
808         sprintf (tmp, "%-27.27s", upcase(text[fieldnr+k]));
809         appendix[k*29] = '0';
810         appendix[(k*29)+1] = '2';
811         for (i=0; i<recC[C_TEXT].len-2; i++) appendix[(k*29)+2+i] = tmp[i];
812       }
813       fputs(appendix, f);
814       fieldnr += k;
815     }
816   }
817
818   return 1;
819 }
820
821 int dtaus_writeE(FILE *f, int count, bigint sum, bigint blz, bigint kto)
822 {
823   char buf[129];
824   char tmp[30];
825   int i;
826   
827   dtaus_prepareE(buf);
828
829   sprintf (tmp, "%07d", count);
830   for (i=0; i<recE[E_COUNT].len; i++) buf[recE[E_COUNT].pos+i] = tmp[i];
831   bigint_sprintf (tmp, "%s", sum);
832   padzeroclip (tmp,13);
833 #ifndef DEFAULT_EURO
834   if (!use_euro)
835     for (i=0; i<recE[E_VAL].len; i++) buf[recE[E_VAL].pos+i] = tmp[i];
836   else
837     for (i=0; i<recE[E_EUR].len; i++) buf[recE[E_EUR].pos+i] = tmp[i];
838 #else
839   if (use_euro)
840     for (i=0; i<recE[E_VAL].len; i++) buf[recE[E_VAL].pos+i] = tmp[i];
841   else
842     for (i=0; i<recE[E_DM].len; i++) buf[recE[E_DM].pos+i] = tmp[i];
843 #endif
844   bigint_sprintf (tmp, "%s", kto);
845   padzeroclip (tmp,17);
846   for (i=0; i<recE[E_KTO].len; i++) buf[recE[E_KTO].pos+i] = tmp[i];
847   bigint_sprintf (tmp, "%s", blz);
848   padzeroclip (tmp,17);
849   for (i=0; i<recE[E_BLZ].len; i++) buf[recE[E_BLZ].pos+i] = tmp[i];
850
851   fputs(buf, f);
852   return 1;
853 }
854
855 void printctln(FILE *f, char *field, char *value)
856 {
857   if (strlen(field) && strlen(value))
858     fprintf(f, "  %s\t%s\n", field, value);
859 }
860
861 /*
862  * one date line, format it properly
863  */
864 void printctlndate(FILE *f, char *field, char *value)
865 {
866   char mydate[11];
867   int i;
868
869   if (!strlen(field) || !strlen(value))
870     return;
871
872   for (i=0;isspace (value[i]) && i<= strlen (value); i++);
873   if (i == strlen (value))
874     return;
875
876   memset (mydate, 0, sizeof (mydate));
877   if (strlen (value) == 6) {
878     mydate[0] = value[0];
879     mydate[1] = value[1];
880     mydate[2] = '.';
881     mydate[3] = value[2];
882     mydate[4] = value[3];
883     mydate[5] = '.';
884     mydate[6] = value[4];
885     mydate[7] = value[5];
886     fprintf(f, "  %s\t%s\n", field, mydate);
887   } else if (strlen (value) == 8) {
888     mydate[0] = value[0];
889     mydate[1] = value[1];
890     mydate[2] = '.';
891     mydate[3] = value[2];
892     mydate[4] = value[3];
893     mydate[5] = '.';
894     mydate[6] = value[4];
895     mydate[7] = value[5];
896     mydate[8] = value[6];
897     mydate[9] = value[7];
898     fprintf(f, "  %s\t%s\n", field, mydate);
899   } else {
900     fprintf (stderr, "Broken date field: %s\n", value);
901     fprintf(f, "  %s\t%s\n", field, value);
902   }
903 }
904
905
906 /*
907  *  Third: Some high level routines
908  */
909
910 void dtaus2control (char *cdtaus, char *ccontrol)
911 {
912   FILE *fdtaus, *fcontrol;
913   char *buf;
914   char *bufp;
915   char tmp[30];
916   char x[30];
917   int index;
918   int extC;
919   div_t res;
920
921   if (!cdtaus) {
922     if (!(fdtaus = fopen("DTAUS0.TXT", "r")))
923       if (!(fdtaus = fopen("dtaus0.txt", "r")))
924         return;
925   } else {
926     if (!strcmp (cdtaus, "-"))
927       fdtaus = stdin;
928     else
929       if (!(fdtaus = fopen(cdtaus, "r")))
930         return;
931   }
932   if (!ccontrol) 
933     fcontrol = stdout;
934   else
935     if (!strcmp (ccontrol, "-"))
936       fcontrol = stdout;
937     else
938       if (!(fcontrol = fopen(ccontrol, "w")))
939         return;
940   if (!(buf = (char *)malloc (512)))
941     return;
942
943   /* 
944    * Record A lesen
945    */
946   if (dtaus_nextrec((void *)buf, fdtaus) == 1) {
947     if (dtaus_char(buf,4) == 'A') {
948       fprintf(fcontrol, "BEGIN {\n");
949       bufp = buf;
950
951       for (index=A_TRANS; index < A_LOOP; index++) {
952         bufp = buf + recA[index].pos;
953         memcpy(tmp, bufp, recA[index].len); tmp[recA[index].len] = '\0';
954         if (index == A_DATE || index == A_TODO)
955           printctlndate(fcontrol, recA[index].name, tmp);
956         else
957           printctln(fcontrol, recA[index].name, strip_zeros(strip_spaces(tmp)));
958       }
959
960       bufp = buf + recA[A_CURR].pos;
961       if (*bufp == '1') {
962         use_euro = 1;
963         fprintf(fcontrol, "  Euro\n");
964       } else {
965         use_euro = 0;
966         fprintf(fcontrol, "  DM\n");
967       }
968
969       fprintf(fcontrol, "}\n\n");
970     } else {
971       fprintf (stderr, "Datei fängt nicht mit dem Anfangsdatensatz an.\n");
972       return;
973     }
974   } else {
975     fprintf (stderr, "Der Anfangsdatensatz ist kaputt.\n");
976     return;
977   }
978
979   /*
980    * Record C lesen
981    */
982   if (dtaus_nextrec((void *)buf, fdtaus) == 1) {
983     while (dtaus_char(buf,4) == 'C') {
984       bufp = buf + 128;
985       if (dtaus_nextrec((void *)bufp, fdtaus) != 1) {
986         fprintf (stderr, "Der zweite Teil der Transaktion ist kaputt.\n");
987         return;
988       } else {
989         fprintf(fcontrol, "{\n");
990
991         for (index=C_NAME; index < C_LOOP; index++) {
992           if (index == C_TEXT || index == C_EXT)
993             continue;
994 #ifndef DEFAULT_EURO
995           if (use_euro && index == C_VAL)
996             index = C_EUR;
997 #else
998           if (!use_euro && index == C_VAL)
999             index = C_DM;
1000 #endif
1001           bufp = buf + recC[index].pos;
1002           memcpy(tmp, bufp, recC[index].len); tmp[recC[index].len] = '\0';
1003
1004           /*
1005            * C_EUR and C_DM are outside of the loop, can only be
1006            * selected for the non-default currency, but the value
1007            * should be stored in the normal record field.
1008            */
1009 #ifndef DEFAULT_EURO
1010           if (index == C_EUR)
1011 #else
1012           if (index == C_DM)
1013 #endif
1014             printctln(fcontrol, recC[C_VAL].name, strip_zeros(string2real(tmp)));
1015           else if (index == C_VAL)
1016             printctln(fcontrol, recC[index].name, strip_zeros(string2real(tmp)));
1017           else if (index == C_TRANS)
1018             printctln(fcontrol, recC[index].name, strip_zeros(string2trans(tmp)));
1019           else
1020             printctln(fcontrol, recC[index].name, strip_zeros(strip_spaces(tmp)));
1021 #ifndef DEFAULT_EURO
1022           if (use_euro && index == C_EUR)
1023             index = C_VAL;
1024 #else
1025           if (!use_euro && index == C_DM)
1026             index = C_VAL;
1027 #endif
1028         }
1029
1030         for (index=C_TEXT; index <= C_EXT; index++) {
1031           if (!(dtaus_char(buf,recC[index].pos) == ' ')) {
1032             bufp = buf + recC[index].pos;
1033             memcpy(x, bufp, 2); tmp[2] = '\0'; bufp+=2;
1034             memcpy(tmp, bufp, recC[index].len-2); tmp[recC[index].len-2] = '\0';
1035             printctln(fcontrol, string2ext(x), strip_spaces(tmp));
1036           }
1037         }
1038
1039         /* Number of extension records for this C record */
1040         extC = dtaus_int(buf, 185, 2);
1041         extC -= 2;
1042         if (extC > 0) {
1043           res = div (extC, 4);
1044           extC = res.quot;
1045           if (res.rem) extC++;
1046         }
1047       }
1048       if (dtaus_nextrec((void *)buf, fdtaus) != 1)
1049         memset (buf, 0, sizeof(buf));
1050
1051       /*
1052        * Are there extension records that we have to check?
1053        *
1054        * 2nd half of the AND is wrong, but since dtaus < 0.5 wrote 01
1055        *     instead of 00 we should let it in so it can read its own
1056        *     old files...  *sigh*
1057        */
1058       while (extC > 0 && dtaus_char(buf,4) != 'C' && dtaus_char(buf,4) != 'E') {
1059         for (index=0; index < 4; index++) {
1060           if ((dtaus_char(buf,index*29) != ' ')) {
1061             bufp = buf + index*29;
1062             memcpy(x, bufp, 2); tmp[2] = '\0'; bufp+=2;
1063             memcpy(tmp, bufp, recC[C_TEXT].len-2); tmp[recC[C_TEXT].len-2] = '\0';
1064             printctln(fcontrol, string2ext(x), strip_spaces(tmp));
1065           }
1066         }
1067         if (dtaus_nextrec((void *)buf, fdtaus) != 1)
1068           memset (buf, 0, sizeof(buf));
1069         extC--;
1070       }
1071       fprintf(fcontrol, "}\n");
1072     }
1073   }
1074
1075   /*
1076    * Record E lesen
1077    *   (gelesen ist er eigentlich schon...)
1078    */
1079   if (dtaus_char(buf,4) == 'E') {
1080     if (dtaus_char(buf,4) == 'E') {
1081       fprintf(fcontrol, "\nEND {\n");
1082
1083       for (index=E_COUNT; index <= E_BLZ; index++) {
1084 #ifndef DEFAULT_EURO
1085         if (use_euro && index == E_VAL)
1086           index = E_EUR;
1087 #else
1088         if (!use_euro && index == E_VAL)
1089           index = E_DM;
1090 #endif
1091
1092         bufp = buf + recE[index].pos;
1093         memcpy(tmp, bufp, recE[index].len); tmp[recE[index].len] = '\0';
1094
1095 #ifndef DEFAULT_EURO
1096         if (index == E_VAL || index == E_EUR)
1097 #else
1098         if (index == E_VAL || index == E_DM)
1099 #endif
1100           printctln(fcontrol, recE[E_VAL].name, strip_zeros(string2real(tmp)));
1101         else
1102           printctln(fcontrol, recE[index].name, strip_zeros(tmp));
1103 #ifndef DEFAULT_EURO
1104           if (use_euro && index == E_EUR)
1105             index = E_VAL;
1106 #else
1107           if (!use_euro && index == E_DM)
1108             index = E_VAL;
1109 #endif
1110       }
1111
1112       fprintf(fcontrol, "}\n");
1113     } else {
1114       fprintf (stderr, "Das ist kein Abschlußdatensatz.\n");
1115       return;
1116     }
1117   } else {
1118     fprintf (stderr, "Der Abschlußdatensatz ist leer oder kaputt.\n");
1119     return;
1120   }
1121   fclose(fcontrol);
1122   fclose(fdtaus);
1123 }
1124
1125 int control2dtaus (char *ccontrol, char *cdtaus, char *cbeleg, char *ccheck, char *latex)
1126 {
1127   FILE *fdtaus, *fcontrol, *fbeleg, *fcheck;
1128   void *buf;
1129   char *ident;
1130   int  recindex;
1131   char line[100];
1132   char *valA[A_LEN], *valC[C_LEN];
1133   int count;
1134   bigint sum_val, sum_blz, sum_kto, bi;
1135   char **text = NULL;
1136   char *cp;
1137   int textindex = 0;
1138   int len, i;
1139   char *type = NULL;
1140   char *currency = NULL;
1141   char date_todo[11];
1142   char ssum_val[30], ssum_kto[30], ssum_blz[30];
1143
1144   if (!cdtaus) {
1145     if (!(fdtaus = fopen("dtaus0.txt", "w")))
1146       return 0;
1147   } else {
1148     if (!strcmp (cdtaus, "-"))
1149       fdtaus = stdout;
1150     else
1151       if (!(fdtaus = fopen(cdtaus, "w")))
1152         return 0;
1153   }
1154   if (!ccontrol) {
1155     if (!(fcontrol = fopen("dtaus0.ctl", "r")))
1156       if (!(fcontrol = fopen("DTAUS0.CTL", "r")))
1157         return 0;
1158   } else {
1159     if (!strcmp (ccontrol, "-"))
1160       fcontrol = stdin;
1161     else
1162       if (!(fcontrol = fopen(ccontrol, "r")))
1163         return 0;
1164   }
1165   if (!cbeleg) {
1166     if (!(fbeleg = fopen("dtaus0.doc", "w")))
1167       return 0;
1168   } else {
1169     if (!(fbeleg = fopen(cbeleg, "w")))
1170       return 0;
1171   }
1172   if (!ccheck)
1173     fcheck = stdout;
1174   else
1175     if (!(fcheck = fopen(ccheck, "w")))
1176       return 0;
1177
1178
1179   if (!(buf = (char *)malloc (512)))
1180     return 0;
1181
1182   /* 
1183    * Record A lesen
1184    */
1185   memset (valA, 0, sizeof(valA));
1186   control_nextline ((void *)line, 100, fcontrol);
1187   ident = extract_ident(line);
1188   if (!strcmp(ident, "begin") && (line[0] == '{')) {
1189     control_nextline ((void *)line, 100, fcontrol);
1190     while (strlen(line) && line[0] != '}') {
1191       ident = extract_ident(line);
1192       if ((recindex = rec_index(ident, REC_A)) != -1)
1193         {
1194         if (recA[recindex].type != IGN)
1195           if ((valA[recindex] = (char *)malloc (strlen(line)+1)))
1196             strcpy(valA[recindex], line);
1197         } else {
1198           if (! strcasecmp (ident, "euro"))
1199             use_euro = 1;
1200           if (! strcasecmp (ident, "dm"))
1201             use_euro = 0;
1202         }
1203       control_nextline ((void *)line, 100, fcontrol);
1204     }
1205     if (((recindex = rec_index("art", REC_A)) != -1) && valA[recindex] && strlen(valA[recindex])) {
1206       if (valA[recindex][0] == 'L')
1207         type = strdup ("Sammeleinziehungsauftrag");
1208       else if (valA[recindex][0] == 'G')
1209         type = strdup ("Sammelueberweisungsauftrag");
1210       else
1211         type = strdup ("Sammelauftrag");
1212
1213       if (use_euro)
1214         currency = strdup ("Euro");
1215       else
1216         currency = strdup ("DM");
1217
1218       if (valA[A_TODO])
1219         sprintf (date_todo, valA[A_TODO]);
1220       else
1221         memset (date_todo, 0, sizeof (date_todo));
1222
1223       fprintf(fbeleg, "\n\n");
1224       fprintf(fbeleg, "\n    Begleitzettel\n\n");
1225       fprintf(fbeleg, "\n    Belegloser Datentraegeraustausch\n\n");
1226       fprintf(fbeleg, "\n    %s\n\n", type);
1227       fprintf(fbeleg, "\n    VOL ........................:\n");
1228       fprintf(fbeleg, "\n    Erstellungsdatum ...........: %s\n", get_date());
1229       if (date_todo) {
1230         fprintf(fbeleg, "\n    Ausfuehrungsdatum ..........: %s\n", date_todo);
1231       }
1232       fprintf(fbeleg, "\n    Waehrung ...................: %s\n", currency);
1233     }
1234     if (!dtaus_writeA(fdtaus, valA)) {
1235       fprintf (stderr, "Konnte den Anfangsdatensatz nicht schreiben.\n");
1236       return 0;
1237     }
1238
1239     fprintf (fcheck, "\n\n\n");
1240     if (valA[recindex][0] == 'L')
1241       fprintf (fcheck, "    Sammeleinziehungsauftrag\n\n");
1242     else if (valA[recindex][0] == 'G')
1243       fprintf (fcheck, "    Sammelueberweisungsauftrag\n\n");
1244     else
1245       fprintf (fcheck, "    Sammelauftrag\n\n");
1246     fprintf (fcheck, "    Erstellungsdatum : %s\n\n", get_date());
1247     if (use_euro)
1248       fprintf (fcheck, "    Waehrung         : Euro\n\n\n");
1249     else
1250       fprintf (fcheck, "    Waehrung         : DM\n\n\n");
1251     fprintf (fcheck, "     %-10s  %-8s  %-30s   %12s\n", "Kontonr.", "BLZ", "Name", "Betrag");
1252     fprintf (fcheck, "    --------------------------------------------------------------------\n");
1253   } else {
1254     fprintf (stderr, "Datei fängt nicht mit dem Anfangsdatensatz (BEGIN) an.\n");
1255     return 0;
1256   }
1257
1258   /* 
1259    * Record C lesen
1260    */
1261   count = 0;
1262   sum_val = bigint_int(0);
1263   sum_blz = bigint_int(0);
1264   sum_kto = bigint_int(0);
1265   memset (valC, 0, sizeof(valC));
1266   control_nextline ((void *)line, 100, fcontrol);
1267   if (line[0] == '{') {
1268     while (strlen(line) && line[0] == '{') {
1269       control_nextline ((void *)line, 100, fcontrol);
1270       if (text) {
1271         for (textindex=0; textindex < MAX_TEXT && text[textindex]; textindex++)
1272           free (text[textindex]);
1273         free (text);
1274         text = NULL;
1275       }
1276       while (strlen(line) && line[0] != '}') {
1277         ident = extract_ident(line);
1278         if ((recindex = rec_index(ident, REC_C)) != -1)
1279           if (recC[recindex].type != IGN) {
1280             /*
1281              * Special exception to support multiple Text fields
1282              */
1283             if (recindex == C_TEXT && valC[recindex]) {
1284               if (!text) {
1285                 if ((text = (char **)malloc ((MAX_TEXT+1) * sizeof (char *))) == NULL)
1286                   return 0;
1287                 else {
1288                   textindex = 0;
1289                   memset (text, 0, (MAX_TEXT+1) * sizeof (char *));
1290                 }
1291               }
1292               if (textindex < MAX_TEXT) {
1293                 if ((cp = (char *)malloc (strlen (line) + 1))) {
1294                   strcpy (cp, line);
1295                   cp[strlen (line)] = '\0';
1296                   text[textindex++] = cp;
1297                 }
1298               }
1299             } else {
1300               len = strlen(line);
1301               if (recindex == C_VAL) {
1302                 /* Convert commas to dots for later processing */
1303                 for (i=0; line[i]; i++) if (line[i] == ',') line[i] = '.';
1304
1305                 if ((cp = strchr (line, '.')) == NULL) {
1306                   if (!(valC[recindex] = (char *)malloc (strlen(line)+4)))
1307                     return 0;
1308                   sprintf (valC[recindex], "%s.00", line);
1309                 } else if ( ((len = cp - line + 3)) < strlen (line)) {
1310                   if (!(valC[recindex] = (char *)malloc (len+1)))
1311                     return 0;
1312                   strncpy (valC[recindex], line, len);
1313                   valC[recindex][len] = '\0';
1314                 } else {
1315                   if (!(valC[recindex] = (char *)malloc (strlen(line)+1)))
1316                     return 0;
1317                   strcpy(valC[recindex], line);
1318                 }
1319               } else {
1320                 if ((valC[recindex] = (char *)malloc (strlen(line)+1)))
1321                   strcpy(valC[recindex], line);
1322                 else
1323                   return 0;
1324               }
1325             }
1326           }
1327         control_nextline ((void *)line, 100, fcontrol);
1328       }
1329       if (!dtaus_writeC(fdtaus, valA, valC, text)) {
1330         fprintf (stderr, "Konnte den regulären Datensatz nicht schreiben.\n");
1331         return 0;
1332       }
1333       count++;
1334       bi = bigint_string(real2string(valC[C_VAL])); sum_val = bigint_add(sum_val, bi);
1335       bi = bigint_string(valC[C_BLZ]); sum_blz = bigint_add(sum_blz, bi);
1336       bi = bigint_string(valC[C_KTO]); sum_kto = bigint_add(sum_kto, bi);
1337
1338       fprintf (fcheck, "     %10s  %8s  %-30s   %12s\n", valC[C_KTO], valC[C_BLZ], valC[C_NAME], valC[C_VAL]);
1339       for (recindex=0; recindex<C_LEN; recindex++)
1340         if (valC[recindex])
1341           free(valC[recindex]);
1342       memset (valC, 0, sizeof(valC));
1343       control_nextline ((void *)line, 100, fcontrol);
1344     }
1345   } else {
1346     fprintf (stderr, "Kein regulärer Datensatz?\n");
1347     return 0;
1348   }
1349
1350   /* 
1351    * Record E lesen
1352    */
1353   dtaus_writeE(fdtaus, count, sum_val, sum_blz, sum_kto);
1354   fprintf (fcheck, "    --------------------------------------------------------------------\n");
1355   fprintf (fbeleg, "\n    Anzahl .....................: %d\n", count);
1356   bigint_sprintf (ssum_val, "%s", sum_val);
1357   recindex=strlen(ssum_val);
1358   ssum_val[recindex+1] = '\0';
1359   ssum_val[recindex] = ssum_val[recindex-1];
1360   ssum_val[recindex-1] = ssum_val[recindex-2];
1361   ssum_val[recindex-2] = '.';
1362   fprintf (fcheck, "     %-52s %14s\n", "Summe", ssum_val);
1363   fprintf (fbeleg, "\n    Summe ......................: %s\n", ssum_val);
1364   bigint_sprintf (ssum_kto, "%s", sum_kto);
1365   fprintf (fbeleg, "\n    Kontrollsumme Kontonummern .: %s\n", ssum_kto);
1366   bigint_sprintf (ssum_blz, "%s", sum_blz);
1367   fprintf (fbeleg, "\n    Kontrollsumme Bankleitzahlen: %s\n", ssum_blz);
1368   fprintf (fbeleg, "\n    Unsere Kontonummer .........: %s\n", valA[A_KTO]);
1369   fprintf (fbeleg, "\n    Unsere Bankleitzahl ........: %s\n", valA[A_BLZ]);
1370   fprintf (fbeleg, "\n\n\n\n\n    __________________________________________________\n");
1371   fprintf (fbeleg, "    Ort, Datum                     Unterschrift\n");
1372
1373   if (latex)
1374     generate_latex_receipt (latex, type, get_date(), date_todo,
1375                             currency, count,
1376                             ssum_val, ssum_kto, ssum_blz,
1377                             valA[A_KTO], valA[A_BLZ]);
1378
1379   for (recindex=0; recindex<A_LEN; recindex++)
1380     if (valA[recindex])
1381       free(valA[recindex]);
1382   fclose(fdtaus);
1383   fclose(fcontrol);
1384   fclose(fbeleg);
1385   if (ccheck)
1386     fclose(fcheck);
1387   return count;
1388 }