lib: Made simpleerror callable with stdio handles as well as FDs.
[ashd.git] / lib / resp.h
index 8f18f87..8730584 100644 (file)
@@ -1,11 +1,12 @@
 #ifndef _LIB_HTRESP_H
 #define _LIB_HTRESP_H
 
-#include <req.h>
+#include "req.h"
 
 char *urlquote(char *text);
 char *htmlquote(char *text);
 void simpleerror(int fd, int code, char *msg, char *fmt, ...);
+void simpleerror2(FILE *out, int code, char *msg, char *fmt, ...);
 void stdredir(struct hthead *req, int fd, int code, char *dst);
 char *fmthttpdate(time_t time);
 time_t parsehttpdate(char *date);