You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
278 B

#include <stdio.h>
typedef struct {
int status;
char* notice;
char* mime;
char* protocol;
} ResHeader;
void makeHeader(char* out, ResHeader* header) {
sprintf(out, "%s %d %s\r\nContent-Type: %s\r\n\n", header->protocol, header->status, header->notice, header->mime);
}