Mercurial > hg > xemacs-beta
comparison lib-src/mmencode.c @ 647:b39c14581166
[xemacs-hg @ 2001-08-13 04:45:47 by ben]
removal of unsigned, size_t, etc.
author | ben |
---|---|
date | Mon, 13 Aug 2001 04:46:48 +0000 |
parents | abe6d1db359e |
children | 49316578f12d |
comparison
equal
deleted
inserted
replaced
646:00c54252fe4f | 647:b39c14581166 |
---|---|
347 } | 347 } |
348 | 348 |
349 static void | 349 static void |
350 fromqp(FILE *infile, FILE *outfile, char **boundaries, int *boundaryct) | 350 fromqp(FILE *infile, FILE *outfile, char **boundaries, int *boundaryct) |
351 { | 351 { |
352 unsigned int c1, c2; | 352 int c1, c2; |
353 int sawnewline = 1, neednewline = 0; | 353 int sawnewline = 1, neednewline = 0; |
354 /* The neednewline hack is necessary because the newline leading into | 354 /* The neednewline hack is necessary because the newline leading into |
355 a multipart boundary is part of the boundary, not the data */ | 355 a multipart boundary is part of the boundary, not the data */ |
356 | 356 |
357 while ((c1 = getc(infile)) != EOF) { | 357 while ((c1 = getc(infile)) != EOF) { |