diff options
Diffstat (limited to 'src/vppinfra/unformat.c')
-rw-r--r-- | src/vppinfra/unformat.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/vppinfra/unformat.c b/src/vppinfra/unformat.c index 0f6da4fd3b9..3904b450f48 100644 --- a/src/vppinfra/unformat.c +++ b/src/vppinfra/unformat.c @@ -70,22 +70,6 @@ _unformat_fill_input (unformat_input_t * i) return i->index; } -always_inline uword -is_white_space (uword c) -{ - switch (c) - { - case ' ': - case '\t': - case '\n': - case '\r': - return 1; - - default: - return 0; - } -} - /* Format function for dumping input stream. */ __clib_export u8 * format_unformat_error (u8 * s, va_list * va) |