Message ID | 20230808214258.975440-2-mathieu@schroetersa.ch (mailing list archive) |
---|---|
State | Accepted |
Commit | db7fb3f1965751444c3b743ba0253061fd7e3b44 |
Delegated to: | David Ahern |
Headers | show |
Series | [iproute2-next,1/4] Add get_long utility and adapt get_integer accordingly | expand |
Context | Check | Description |
---|---|---|
netdev/tree_selection | success | Not a local patch |
diff --git a/include/utils.h b/include/utils.h index cf11174d..f26ed822 100644 --- a/include/utils.h +++ b/include/utils.h @@ -309,6 +309,7 @@ unsigned int print_name_and_link(const char *fmt, extern int cmdlineno; char *int_to_str(int val, char *buf); +char *uint_to_str(unsigned int val, char *buf); int get_guid(__u64 *guid, const char *arg); int get_real_family(int rtm_type, int rtm_family); diff --git a/lib/utils.c b/lib/utils.c index 68f44303..efa01668 100644 --- a/lib/utils.c +++ b/lib/utils.c @@ -1409,6 +1409,12 @@ char *int_to_str(int val, char *buf) return buf; } +char *uint_to_str(unsigned int val, char *buf) +{ + sprintf(buf, "%u", val); + return buf; +} + int get_guid(__u64 *guid, const char *arg) { unsigned long tmp;
Signed-off-by: Mathieu Schroeter <mathieu@schroetersa.ch> --- include/utils.h | 1 + lib/utils.c | 6 ++++++ 2 files changed, 7 insertions(+)