Home
last modified time | relevance | path

Searched refs:ND_ASCII_ISGRAPH (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/tcpdump/
H A Dprint-ascii.c93 if (!ND_ASCII_ISGRAPH(s) && in ascii_print()
132 *(asp++) = (char)(ND_ASCII_ISGRAPH(s1) ? s1 : '.'); in hex_and_ascii_print_with_offset()
133 *(asp++) = (char)(ND_ASCII_ISGRAPH(s2) ? s2 : '.'); in hex_and_ascii_print_with_offset()
151 *(asp++) = (char)(ND_ASCII_ISGRAPH(s1) ? s1 : '.'); in hex_and_ascii_print_with_offset()
H A Dnetdissect-ctype.h40 #define ND_ASCII_ISGRAPH(c) ((c) > 0x20 && (c) <= 0x7E) macro