Rivoreo Source Code Repositories
src.rivoreo.one
/
systemd-stable
/
v247-stable
/
.
/
src
/
basic
/
arphrd-to-name.awk
blob: db1c739abb44229696372ebbb05de12ac4d064b6 [
file
] [
log
] [
blame
] [
raw
]
BEGIN
{
print
"const char *arphrd_to_name(int id) {"
print
" switch(id) {"
}
!
/^HDLC$/
{
printf
" case ARPHRD_%s: return \"%s\";\n"
,
$1
,
$1
}
END
{
print
" default: return NULL;"
print
" }"
print
"}"
}