mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-01 11:34:17 +01:00
10 lines
190 B
Awk
10 lines
190 B
Awk
BEGIN {
|
|
print "static const char *const cap_names[] = {"
|
|
}
|
|
/^#define CAP_[^[:space:]]+[[:space:]]+[0-9]+[[:space:]]*$/ {
|
|
printf "\t[%d] = \"%s\",\n", $3, tolower($2)
|
|
}
|
|
END {
|
|
print "};"
|
|
}
|