1<include libawka.h.warn
2
3#ifndef _AWKA_H
4#  define _AWKA_H
5
6#include <stdio.h>
7#include <stdlib.h>
8#include <string.h>
9#include <math.h>
10#include <limits.h>
11#include <ctype.h>
12
13#define A_MIN(a, b) ((a) > (b) ? (b) : (a))
14#define A_MAX(a, b) ((a) > (b) ? (a) : (b))
15
16<include ../config.h
17
18#if defined(__cplusplus)
19#undef INLINE
20#define INLINE inline
21#endif
22
23<include ../patchlev.h
24
25#ifndef TRUE
26#  define TRUE  1
27#  define FALSE 0
28#endif
29
30<include varg.h
31
32#if defined(__cplusplus)
33extern "C" {
34#endif
35
36<include error.h
37
38<include mem.h
39
40<include ../regexp/regex.h
41
42<include var.h
43
44<include array.h
45
46<include builtin.h
47
48<include builtin2.h
49
50<include io.h
51
52<include init.h
53
54#if defined(__cplusplus)
55}
56#endif
57
58#endif
59