17 lines
453 B
TOML
17 lines
453 B
TOML
# POSIX header spec: https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/regex.h.html
|
|
#
|
|
# Spec quotations relating to includes:
|
|
# - "The <regex.h> header shall define the size_t type as described in <sys/types.h>."
|
|
sys_includes = []
|
|
after_includes = """
|
|
#include <bits/size-t.h> // for size_t from sys/types.h
|
|
"""
|
|
include_guard = "_RELIBC_REGEX_H"
|
|
language = "C"
|
|
style = "Type"
|
|
no_includes = true
|
|
cpp_compat = true
|
|
|
|
[enum]
|
|
prefix_with_name = true
|