summaryrefslogtreecommitdiff
path: root/db/c.lua
blob: 9f87eb6b58ab1426c87b5c00c80e3aaf3ea80c64 (plain)
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
scheme "headers/1"
aliases "ANSI C" {"ANSI X3.159-1989", "C89", "C90", "ISO/IEC 9899:1990"}
aliases "C95" {"ISO/IEC 9899:1990/Amd 1:1995"}
aliases "C99" {"ISO/IEC 9899:1999"}
aliases "C11" {"ISO/IEC 9899:2011"}
aliases "C17" {"ISO/IEC 9899:2018"}
aliases "C23" {"ISO/IEC 9899:2024", "C"}
headers "ANSI C" {
	"assert.h",
	"ctype.h",
	"errno.h",
	"float.h",
	"limits.h",
	"locale.h",
	"math.h",
	"setjmp.h",
	"signal.h",
	"stdarg.h",
	"stddef.h",
	"stdio.h",
	"stdlib.h",
	"string.h",
	"time.h",
}
headers "C95" {
	include "C89",
	"iso646.h",
	"wchar.h",
	"wctype.h",
}
headers "C99" {
	include "C95",
	"complex.h",
	"fenv.h",
	"inttypes.h",
	"stdbool.h",
	"stdint.h",
	"tgmath.h",
}
headers "C11" {
	include "C99",
	"stdalign.h",
	"stdatomic.h",
	"stdnoreturn.h",
	"threads.h",
	"uchar.h",
}
headers "C17" {
	include "C11",
}
headers "C23" {
	include "C17",
	"stdbit.h",
	"stdckdint.h",
}