Rivoreo Source Code Repositories
src.rivoreo.one
/
systemd-stable
/
v239-50
/
.
/
src
/
resolve
/
dns_type-to-name.awk
blob: badb1824b5a38608a586c17cff1c0f796220c69b [
file
] [
log
] [
blame
] [
raw
]
BEGIN
{
print
"const char *dns_type_to_string(int type) {\n\tswitch(type) {"
}
{
printf
" case DNS_TYPE_%s: return "
,
$1
;
sub
(
/_/
,
"-"
);
printf
"\"%s\";\n"
,
$1
}
END
{
print
" default: return NULL;\n\t}\n}\n"
}