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

14 lines
209 B
C

#ifndef FORMATS_COMMON_H
#define FORMATS_COMMON_H
#include <stdlib.h>
struct http_client;
void
format_send_reply(struct http_client *client,
const char *p, size_t sz,
const char *content_type);
#endif