Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 436 → Rev 437

/svarcom/trunk/tlumacz/tlumacz.c
29,9 → 29,7
#include <stdlib.h>
#include <string.h>
 
#include "msgid.h"
 
 
/* read a single line from fd and fills it into dst, returns line length
* ending CR/LF is trimmed, as well as any trailing spaces */
static unsigned short readl(char *dst, size_t dstsz, FILE *fd) {
201,7 → 199,9
puts("ERROR: FAILED TO OPEN OR CREATE DEFAULT.LNG");
break;
}
fwrite(buff, 1, sz, fd2);
fwrite(id, 1, 2, fd2); /* lang block id */
fwrite(&sz, 1, 2, fd2); /* lang block size */
fwrite(buff, 1, sz, fd2); /* langblock content (strings) */
fclose(fd2);
}
}