Systemd/src/basic/af-to-name.awk

6 lines
164 B
Awk

BEGIN{ print "static const char* const af_names[] = { "}
!/AF_FILE/ && !/AF_ROUTE/ && !/AF_LOCAL/ {
printf " [%s] = \"%s\",\n", $1, $1
}
END{print "};"}