blob: bd8a28c2fe8e32e90ae3201e67e524440c90e7cb [file] [log] [blame]
# SPDX-License-Identifier: LGPL-2.1-or-later
BEGIN{
print "static const char* const capability_names[] = { "
}
{
printf " [%s] = \"%s\",\n", $1, tolower($1)
}
END{
print "};"
}