I have a website back-end written in C which pastes HTML header and footer templates together along with dynamically generated content in between. For some reason, an unwanted 'ÿ' (umlaut-ed y) character (ASCII 152) is appended after every call to displayTemplate(). This character is unwanted and not part of the file. How can this be prevented from being outputted? Thanks.
The code which performs this function looks something like this:
#include <stdio.h>
#include <stdlib.h>
void displayTemplate(char *);
int main(void) {
printf("%s%c%c\n", "Content-Type:text/html;charset=iso-8859-1", 13, 10);
displayTemplate("templates/mainheader.html");
/* begin */
printf("<p>Generated site content goes here.</p>");
/* end */
displayTemplate("templates/mainfooter.html");
return 0;
}
void displayTemplate(char *path) {
char currentChar;
FILE *headerFile = fopen(path, "r");
do {
currentChar = fgetc(headerFile);
putchar(currentChar);
} while(currentChar != EOF);
fclose(headerFile);
}
freadandfwrite. – lhf Jun 16 '11 at 2:10\r\nto conform to the HTTP specification, assuming your server is running on a POSIX conformant or reasonably POSIX-like OS where no "text mode" translation of newlines is performed. – R.. Jun 16 '11 at 4:05