chiark / gitweb /
Prep v235: Added cap-list, which is needed now.
[elogind.git] / src / basic / cap-to-name.awk
1 BEGIN{
2         print "static const char* const capability_names[] = { "
3 }
4 {
5         printf "        [%s] = \"%s\",\n", $1, tolower($1)
6 }
7 END{
8         print "};"
9 }