C风格字符串(\0结尾),当使用这种语义时,只需传入该值即可。
\0
1
void print_as_string(const char *s)
字节数组(内容中可能包含\0),当使用此种语义时,还需传入长度
void print_as_hex(const char *s, size_t len)