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.

19 lines
298 B
C

14 years ago
#ifndef FORMATS_COMMON_H
#define FORMATS_COMMON_H
#include <stdlib.h>
struct cmd;
14 years ago
void
format_send_reply(struct cmd *cmd,
const char *p, size_t sz,
const char *content_type);
14 years ago
void
format_send_error(struct cmd *cmd, short code, const char *msg);
13 years ago
int
integer_length(long long int i);
14 years ago
#endif