strcat() won't exit
- by Tristan Sebens
I'm trying to implement a very basic server in C, one part of which is constructing HTTP headers. To do this I have written a class called header_builder, which basically constructs the headers for me. One of the most basic methods of this class is append_header_line, shown below:
void append_header_line( const char *line, char *hdr ) {
…