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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
* Copyright Jan Engelhardt, 1999-2008
*
* This file is part of libHX. libHX is free software; you can
* redistribute it and/or modify it under the terms of the GNU Lesser
* General Public License as published by the Free Software Foundation;
* either version 2.1 or (at your option) any later version.
*/
#ifndef LIBHX_INTERNAL_H
#define LIBHX_INTERNAL_H 1
#include "config.h"
#include <libHX/defs.h>
#include <libHX/string.h>
#ifdef __cplusplus
/* Only for our dual C/C++ testsuites */
# define const_cast(type, expr) const_cast<type>(expr)
# define const_cast1(type, expr) const_cast<type>(expr)
# define const_cast2(type, expr) const_cast<type>(expr)
# define const_cast3(type, expr) const_cast<type>(expr)
# define dynamic_cast(type, expr) dynamic_cast<type>(expr)
# define signed_cast(type, expr) signed_cast<type>(expr)
# define reinterpret_cast(type, expr) reinterpret_cast<type>(expr)
#endif
#ifdef __MINGW32__
# include "uxcompat.h"
#endif
#ifdef _MSC_VER
# include "uxcompat.h"
# define snprintf _snprintf
#endif
#ifdef HAVE_VISIBILITY_HIDDEN
# define EXPORT_SYMBOL __attribute__((visibility("default")))
#else
# define EXPORT_SYMBOL
#endif
#define MAXFNLEN 256 /* max length for filename buffer */
#define MAXLNLEN 1024 /* max length for usual line */
#define HXMC_IDENT 0x200571AF
struct memcont {
size_t alloc, length;
unsigned int id;
char data[];
};
struct timespec;
struct timeval;
extern hxmc_t *HXparse_dequote_fmt(const char *, const char *, const char **);
/* time.c - these are obsolete, but kept for ABI */
extern void HX_diff_timespec(struct timespec *, const struct timespec *,
const struct timespec *);
extern void HX_diff_timeval(struct timeval *, const struct timeval *,
const struct timeval *);
#endif /* LIBHX_INTERNAL_H */
|