Use strchr(3) instead of index(3) since it is POSIX compliant and not
[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}
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}
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}
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 #ifndef DEFAULT_EURO
993           if (use_euro && index == C_VAL)
994             index = C_EUR;
995 #else
996           if (!use_euro && index == C_VAL)
997             index = C_DM;
998 #endif
999           bufp = buf + recC[index].pos;
1000           memcpy(tmp, bufp, recC[index].len); tmp[recC[index].len] = '\0';
1001
1002           /*
1003            * C_EUR and C_DM are outside of the loop, can only be
1004            * selected for the non-default currency, but the value
1005            * should be stored in the normal record field.
1006            */
1007 #ifndef DEFAULT_EURO
1008           if (index == C_EUR)
1009 #else
1010           if (index == C_DM)
1011 #endif
1012             printctln(fcontrol, recC[C_VAL].name, strip_zeros(string2real(tmp)));
1013           else if (index == C_VAL)
1014             printctln(fcontrol, recC[index].name, strip_zeros(string2real(tmp)));
1015           else if (index == C_TRANS)
1016             printctln(fcontrol, recC[index].name, strip_zeros(string2trans(tmp)));
1017           else
1018             printctln(fcontrol, recC[index].name, strip_zeros(strip_spaces(tmp)));
1019 #ifndef DEFAULT_EURO
1020           if (use_euro && index == C_EUR)
1021             index = C_VAL;
1022 #else
1023           if (!use_euro && index == C_DM)
1024             index = C_VAL;
1025 #endif
1026         }
1027
1028         for (index=C_TEXT; index <= C_EXT; index++) {
1029           if (!(dtaus_char(buf,recC[index].pos) == ' ')) {
1030             bufp = buf + recC[index].pos;
1031             memcpy(x, bufp, 2); tmp[2] = '\0'; bufp+=2;
1032             memcpy(tmp, bufp, recC[index].len-2); tmp[recC[index].len-2] = '\0';
1033             printctln(fcontrol, string2ext(x), strip_spaces(tmp));
1034           }
1035         }
1036
1037         /* Number of extension records for this C record */
1038         extC = dtaus_int(buf, 185, 2);
1039         extC -= 2;
1040         if (extC > 0) {
1041           res = div (extC, 4);
1042           extC = res.quot;
1043           if (res.rem) extC++;
1044         }
1045       }
1046       if (dtaus_nextrec((void *)buf, fdtaus) != 1)
1047         memset (buf, 0, sizeof(buf));
1048
1049       /*
1050        * Are there extension records that we have to check?
1051        *
1052        * 2nd half of the AND is wrong, but since dtaus < 0.5 wrote 01
1053        *     instead of 00 we should let it in so it can read its own
1054        *     old files...  *sigh*
1055        */
1056       while (extC > 0 && dtaus_char(buf,4) != 'C' && dtaus_char(buf,4) != 'E') {
1057         for (index=0; index < 4; index++) {
1058           if ((dtaus_char(buf,index*29) != ' ')) {
1059             bufp = buf + index*29;
1060             memcpy(x, bufp, 2); tmp[2] = '\0'; bufp+=2;
1061             memcpy(tmp, bufp, recC[C_TEXT].len-2); tmp[recC[C_TEXT].len-2] = '\0';
1062             printctln(fcontrol, string2ext(x), strip_spaces(tmp));
1063           }
1064         }
1065         if (dtaus_nextrec((void *)buf, fdtaus) != 1)
1066           memset (buf, 0, sizeof(buf));
1067         extC--;
1068       }
1069       fprintf(fcontrol, "}\n");
1070     }
1071   }
1072
1073   /*
1074    * Record E lesen
1075    *   (gelesen ist er eigentlich schon...)
1076    */
1077   if (dtaus_char(buf,4) == 'E') {
1078     if (dtaus_char(buf,4) == 'E') {
1079       fprintf(fcontrol, "\nEND {\n");
1080
1081       for (index=E_COUNT; index <= E_BLZ; index++) {
1082 #ifndef DEFAULT_EURO
1083         if (use_euro && index == E_VAL)
1084           index = E_EUR;
1085 #else
1086         if (!use_euro && index == E_VAL)
1087           index = E_DM;
1088 #endif
1089
1090         bufp = buf + recE[index].pos;
1091         memcpy(tmp, bufp, recE[index].len); tmp[recE[index].len] = '\0';
1092
1093 #ifndef DEFAULT_EURO
1094         if (index == E_VAL || index == E_EUR)
1095 #else
1096         if (index == E_VAL || index == E_DM)
1097 #endif
1098           printctln(fcontrol, recE[E_VAL].name, strip_zeros(string2real(tmp)));
1099         else
1100           printctln(fcontrol, recE[index].name, strip_zeros(tmp));
1101 #ifndef DEFAULT_EURO
1102           if (use_euro && index == E_EUR)
1103             index = E_VAL;
1104 #else
1105           if (!use_euro && index == E_DM)
1106             index = E_VAL;
1107 #endif
1108       }
1109
1110       fprintf(fcontrol, "}\n");
1111     } else {
1112       fprintf (stderr, "Das ist kein Abschlußdatensatz.\n");
1113       return;
1114     }
1115   } else {
1116     fprintf (stderr, "Der Abschlußdatensatz ist leer oder kaputt.\n");
1117     return;
1118   }
1119   fclose(fcontrol);
1120   fclose(fdtaus);
1121 }
1122
1123 int control2dtaus (char *ccontrol, char *cdtaus, char *cbeleg, char *ccheck, char *latex)
1124 {
1125   FILE *fdtaus, *fcontrol, *fbeleg, *fcheck;
1126   void *buf;
1127   char *ident;
1128   int  recindex;
1129   char line[100];
1130   char *valA[A_LEN], *valC[C_LEN];
1131   int count;
1132   bigint sum_val, sum_blz, sum_kto, bi;
1133   char **text = NULL;
1134   char *cp;
1135   int textindex = 0;
1136   int len, i;
1137   char *type = NULL;
1138   char *currency = NULL;
1139   char date_todo[11];
1140   char ssum_val[30], ssum_kto[30], ssum_blz[30];
1141
1142   if (!cdtaus) {
1143     if (!(fdtaus = fopen("dtaus0.txt", "w")))
1144       return 0;
1145   } else {
1146     if (!strcmp (cdtaus, "-"))
1147       fdtaus = stdout;
1148     else
1149       if (!(fdtaus = fopen(cdtaus, "w")))
1150         return 0;
1151   }
1152   if (!ccontrol) {
1153     if (!(fcontrol = fopen("dtaus0.ctl", "r")))
1154       if (!(fcontrol = fopen("DTAUS0.CTL", "r")))
1155         return 0;
1156   } else {
1157     if (!strcmp (ccontrol, "-"))
1158       fcontrol = stdin;
1159     else
1160       if (!(fcontrol = fopen(ccontrol, "r")))
1161         return 0;
1162   }
1163   if (!cbeleg) {
1164     if (!(fbeleg = fopen("dtaus0.doc", "w")))
1165       return 0;
1166   } else {
1167     if (!(fbeleg = fopen(cbeleg, "w")))
1168       return 0;
1169   }
1170   if (!ccheck)
1171     fcheck = stdout;
1172   else
1173     if (!(fcheck = fopen(ccheck, "w")))
1174       return 0;
1175
1176
1177   if (!(buf = (char *)malloc (512)))
1178     return 0;
1179
1180   /* 
1181    * Record A lesen
1182    */
1183   memset (valA, 0, sizeof(valA));
1184   control_nextline ((void *)line, 100, fcontrol);
1185   ident = extract_ident(line);
1186   if (!strcmp(ident, "begin") && (line[0] == '{')) {
1187     control_nextline ((void *)line, 100, fcontrol);
1188     while (strlen(line) && line[0] != '}') {
1189       ident = extract_ident(line);
1190       if ((recindex = rec_index(ident, REC_A)) != -1)
1191         {
1192         if (recA[recindex].type != IGN)
1193           if ((valA[recindex] = (char *)malloc (strlen(line)+1)))
1194             strcpy(valA[recindex], line);
1195         } else {
1196           if (! strcasecmp (ident, "euro"))
1197             use_euro = 1;
1198           if (! strcasecmp (ident, "dm"))
1199             use_euro = 0;
1200         }
1201       control_nextline ((void *)line, 100, fcontrol);
1202     }
1203     if (((recindex = rec_index("art", REC_A)) != -1) && valA[recindex] && strlen(valA[recindex])) {
1204       if (valA[recindex][0] == 'L')
1205         type = strdup ("Sammeleinziehungsauftrag");
1206       else if (valA[recindex][0] == 'G')
1207         type = strdup ("Sammelueberweisungsauftrag");
1208       else
1209         type = strdup ("Sammelauftrag");
1210
1211       if (use_euro)
1212         currency = strdup ("Euro");
1213       else
1214         currency = strdup ("DM");
1215
1216       if (valA[A_TODO])
1217         sprintf (date_todo, valA[A_TODO]);
1218       else
1219         memset (date_todo, 0, sizeof (date_todo));
1220
1221       fprintf(fbeleg, "\n\n");
1222       fprintf(fbeleg, "\n    Begleitzettel\n\n");
1223       fprintf(fbeleg, "\n    Belegloser Datentraegeraustausch\n\n");
1224       fprintf(fbeleg, "\n    %s\n\n", type);
1225       fprintf(fbeleg, "\n    VOL ........................:\n");
1226       fprintf(fbeleg, "\n    Erstellungsdatum ...........: %s\n", get_date());
1227       if (date_todo) {
1228         fprintf(fbeleg, "\n    Ausfuehrungsdatum ..........: %s\n", date_todo);
1229       }
1230       fprintf(fbeleg, "\n    Waehrung ...................: %s\n", currency);
1231     }
1232     if (!dtaus_writeA(fdtaus, valA)) {
1233       fprintf (stderr, "Konnte den Anfangsdatensatz nicht schreiben.\n");
1234       return 0;
1235     }
1236
1237     fprintf (fcheck, "\n\n\n");
1238     if (valA[recindex][0] == 'L')
1239       fprintf (fcheck, "    Sammeleinziehungsauftrag\n\n");
1240     else if (valA[recindex][0] == 'G')
1241       fprintf (fcheck, "    Sammelueberweisungsauftrag\n\n");
1242     else
1243       fprintf (fcheck, "    Sammelauftrag\n\n");
1244     fprintf (fcheck, "    Erstellungsdatum : %s\n\n", get_date());
1245     if (use_euro)
1246       fprintf (fcheck, "    Waehrung         : Euro\n\n\n");
1247     else
1248       fprintf (fcheck, "    Waehrung         : DM\n\n\n");
1249     fprintf (fcheck, "     %-10s  %-8s  %-30s   %12s\n", "Kontonr.", "BLZ", "Name", "Betrag");
1250     fprintf (fcheck, "    --------------------------------------------------------------------\n");
1251   } else {
1252     fprintf (stderr, "Datei fängt nicht mit dem Anfangsdatensatz (BEGIN) an.\n");
1253     return 0;
1254   }
1255
1256   /* 
1257    * Record C lesen
1258    */
1259   count = 0;
1260   sum_val = bigint_int(0);
1261   sum_blz = bigint_int(0);
1262   sum_kto = bigint_int(0);
1263   memset (valC, 0, sizeof(valC));
1264   control_nextline ((void *)line, 100, fcontrol);
1265   if (line[0] == '{') {
1266     while (strlen(line) && line[0] == '{') {
1267       control_nextline ((void *)line, 100, fcontrol);
1268       if (text) {
1269         for (textindex=0; textindex < MAX_TEXT && text[textindex]; textindex++)
1270           free (text[textindex]);
1271         free (text);
1272         text = NULL;
1273       }
1274       while (strlen(line) && line[0] != '}') {
1275         ident = extract_ident(line);
1276         if ((recindex = rec_index(ident, REC_C)) != -1)
1277           if (recC[recindex].type != IGN) {
1278             /*
1279              * Special exception to support multiple Text fields
1280              */
1281             if (recindex == C_TEXT && valC[recindex]) {
1282               if (!text) {
1283                 if ((text = (char **)malloc ((MAX_TEXT+1) * sizeof (char *))) == NULL)
1284                   return 0;
1285                 else {
1286                   textindex = 0;
1287                   memset (text, 0, (MAX_TEXT+1) * sizeof (char *));
1288                 }
1289               }
1290               if (textindex < MAX_TEXT) {
1291                 if ((cp = (char *)malloc (strlen (line) + 1))) {
1292                   strcpy (cp, line);
1293                   cp[strlen (line)] = '\0';
1294                   text[textindex++] = cp;
1295                 }
1296               }
1297             } else {
1298               len = strlen(line);
1299               if (recindex == C_VAL) {
1300                 /* Convert commast to dots for later processing */
1301                 for (i=0; line[i]; i++) if (line[i] == ',') line[i] = '.';
1302
1303                 if ((cp = strchr (line, '.')) == NULL) {
1304                   if (!(valC[recindex] = (char *)malloc (strlen(line)+4)))
1305                     return 0;
1306                   sprintf (valC[recindex], "%s.00", line);
1307                 } else if ( ((len = cp - line + 3)) < strlen (line)) {
1308                   if (!(valC[recindex] = (char *)malloc (len+1)))
1309                     return 0;
1310                   strncpy (valC[recindex], line, len);
1311                   valC[recindex][len] = '\0';
1312                 } else {
1313                   if (!(valC[recindex] = (char *)malloc (strlen(line)+1)))
1314                     return 0;
1315                   strcpy(valC[recindex], line);
1316                 }
1317               } else {
1318                 if ((valC[recindex] = (char *)malloc (strlen(line)+1)))
1319                   strcpy(valC[recindex], line);
1320                 else
1321                   return 0;
1322               }
1323             }
1324           }
1325         control_nextline ((void *)line, 100, fcontrol);
1326       }
1327       if (!dtaus_writeC(fdtaus, valA, valC, text)) {
1328         fprintf (stderr, "Konnte den regulären Datensatz nicht schreiben.\n");
1329         return 0;
1330       }
1331       count++;
1332       bi = bigint_string(real2string(valC[C_VAL])); sum_val = bigint_add(sum_val, bi);
1333       bi = bigint_string(valC[C_BLZ]); sum_blz = bigint_add(sum_blz, bi);
1334       bi = bigint_string(valC[C_KTO]); sum_kto = bigint_add(sum_kto, bi);
1335
1336       fprintf (fcheck, "     %10s  %8s  %-30s   %12s\n", valC[C_KTO], valC[C_BLZ], valC[C_NAME], valC[C_VAL]);
1337       for (recindex=0; recindex<C_LEN; recindex++)
1338         if (valC[recindex])
1339           free(valC[recindex]);
1340       memset (valC, 0, sizeof(valC));
1341       control_nextline ((void *)line, 100, fcontrol);
1342     }
1343   } else {
1344     fprintf (stderr, "Kein regulärer Datensatz?\n");
1345     return 0;
1346   }
1347
1348   /* 
1349    * Record E lesen
1350    */
1351   dtaus_writeE(fdtaus, count, sum_val, sum_blz, sum_kto);
1352   fprintf (fcheck, "    --------------------------------------------------------------------\n");
1353   fprintf (fbeleg, "\n    Anzahl .....................: %d\n", count);
1354   bigint_sprintf (ssum_val, "%s", sum_val);
1355   recindex=strlen(ssum_val);
1356   ssum_val[recindex+1] = '\0';
1357   ssum_val[recindex] = ssum_val[recindex-1];
1358   ssum_val[recindex-1] = ssum_val[recindex-2];
1359   ssum_val[recindex-2] = '.';
1360   fprintf (fcheck, "     %-52s %14s\n", "Summe", ssum_val);
1361   fprintf (fbeleg, "\n    Summe ......................: %s\n", ssum_val);
1362   bigint_sprintf (ssum_kto, "%s", sum_kto);
1363   fprintf (fbeleg, "\n    Kontrollsumme Kontonummern .: %s\n", ssum_kto);
1364   bigint_sprintf (ssum_blz, "%s", sum_blz);
1365   fprintf (fbeleg, "\n    Kontrollsumme Bankleitzahlen: %s\n", ssum_blz);
1366   fprintf (fbeleg, "\n    Unsere Kontonummer .........: %s\n", valA[A_KTO]);
1367   fprintf (fbeleg, "\n    Unsere Bankleitzahl ........: %s\n", valA[A_BLZ]);
1368   fprintf (fbeleg, "\n\n\n\n\n    __________________________________________________\n");
1369   fprintf (fbeleg, "    Ort, Datum                     Unterschrift\n");
1370
1371   if (latex)
1372     generate_latex_receipt (latex, type, get_date(), date_todo,
1373                             currency, count,
1374                             ssum_val, ssum_kto, ssum_blz,
1375                             valA[A_KTO], valA[A_BLZ]);
1376
1377   for (recindex=0; recindex<A_LEN; recindex++)
1378     if (valA[recindex])
1379       free(valA[recindex]);
1380   fclose(fdtaus);
1381   fclose(fcontrol);
1382   fclose(fbeleg);
1383   if (ccheck)
1384     fclose(fcheck);
1385   return count;
1386 }