aboutsummaryrefslogtreecommitdiff
path: root/src/weblog.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2006-08-18 23:00:08 +0000
committerChristian Grothoff <christian@grothoff.org>2006-08-18 23:00:08 +0000
commit6adb5289185c1e4f69b7bc226eca34f6623891be (patch)
tree44c0198ce61d18ac9496d58b3e9e4f0118ac00d9 /src/weblog.h
parentb82c4802264edfd48c0d562e440fe4edbfb60f5d (diff)
downloadlibmicrohttpd-6adb5289185c1e4f69b7bc226eca34f6623891be.tar.gz
libmicrohttpd-6adb5289185c1e4f69b7bc226eca34f6623891be.zip
first round of API cleanup
Diffstat (limited to 'src/weblog.h')
-rw-r--r--src/weblog.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/weblog.h b/src/weblog.h
deleted file mode 100644
index 503c14f0..00000000
--- a/src/weblog.h
+++ /dev/null
@@ -1,40 +0,0 @@
1/* Copyrights 2002 Luis Figueiredo (stdio@netc.pt) All rights reserved.
2 *
3 * See the LICENSE file
4 *
5 * The origin of this software must not be misrepresented, either by
6 * explicit claim or by omission. Since few users ever read sources,
7 * credits must appear in the documentation.
8 *
9 * date: Sat Mar 30 14:25:25 GMT 2002
10 *
11 * memory functions
12 */
13
14#ifndef _WEBLOG_H_
15#define _WEBLOG_H_
16
17
18
19#ifdef HAVE_CONFIG_H
20#include "config.h"
21#endif
22
23#include <stdio.h>
24#include <stdlib.h>
25#include <stdarg.h>
26
27#ifdef WIN32
28#define snprintf _snprintf
29#endif
30
31
32
33#include "debug.h"
34
35extern FILE *_logfile;
36
37void web_log(const char *,...);
38FILE *open_weblog(const char *);
39char *mydate();
40#endif