summaryrefslogtreecommitdiff
path: root/src/basic/arphrd-to-name.awk
blob: 302504b6510ddd7e2b90ae2097656b8d0ba86cb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-License-Identifier: LGPL-2.1-or-later

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 "}"
}