| 151 | } |
| 152 | |
| 153 | static const char *version(void) |
| 154 | { |
| 155 | static char str[128]; |
| 156 | |
| 157 | snprintf(str, sizeof(str), |
| 158 | "%s 1.0 (%s)\n", progname, rte_version()); |
| 159 | return str; |
| 160 | } |
| 161 | |
| 162 | /* Parse numeric argument from command line */ |
| 163 | static unsigned long get_uint(const char *arg, const char *name, |
no test coverage detected