aboutsummaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/src/utils.h b/src/utils.h
deleted file mode 100644
index 7364a519..00000000
--- a/src/utils.h
+++ /dev/null
@@ -1,50 +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 * file: utils.h
10 *
11 * description: Header
12 *
13 * date: 19:50,07-50-2002
14 */
15
16#ifndef _UTILS_H_
17#define _UTILS_H_
18
19#include <stdio.h>
20#include <stdlib.h>
21#include <string.h>
22#include <sys/stat.h>
23#include <ctype.h>
24
25#ifdef TM_IN_SYS_TIME
26#include <sys/time.h>
27#else
28#include <time.h>
29#endif
30
31#include "memory.h"
32
33#ifdef WIN32
34#define strncasecmp strnicmp
35#define snprintf _snprintf
36#define lstat stat
37#define vsnprintf _vsnprintf
38#endif
39
40#define TMPNAMESIZE 8
41extern char *_tmpnameprefix;
42
43
44char *__ILWS_stristr(char *, const char *);
45char *__ILWS_tmpfname();
46int __ILWS_base64decode(char *, const char *);
47char *__ILWS_date(time_t,const char *);
48
49
50#endif