There is no reason to have two buffers, you can trim the input line in place
int trim(char line[])
{
int len = 0;
for (len = 0; line[len] != 0; ++len)
;
while (len > 0 &&
line[len-1] !== ' ' && line[len-1] !== '\t' && line[len-1] !== '\n')
line[--len] = 0;
return len;
}
By returning the line length, you can eliminate blank lines by testing for non-zero length lines
if (trim(line) != 0)
printf("%s\n", line);
EDIT: You can make the while loop even simpler, assuming ASCII encoding.
while (len > 0 && line[len-1] <= ' ')
line[--len] = 0;
