blob: 503c14f02728dc37c99a8642013c9b6dd7a20f62 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* Copyrights 2002 Luis Figueiredo (stdio@netc.pt) All rights reserved.
*
* See the LICENSE file
*
* The origin of this software must not be misrepresented, either by
* explicit claim or by omission. Since few users ever read sources,
* credits must appear in the documentation.
*
* date: Sat Mar 30 14:25:25 GMT 2002
*
* memory functions
*/
#ifndef _WEBLOG_H_
#define _WEBLOG_H_
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#ifdef WIN32
#define snprintf _snprintf
#endif
#include "debug.h"
extern FILE *_logfile;
void web_log(const char *,...);
FILE *open_weblog(const char *);
char *mydate();
#endif
|