blob: 096b1c38f32b4d326ecb44e73259cd0de7f5cc02 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#ifndef NBD_NETASCII_H
#define NBD_NETASCII_H
#include <stdint.h>
uint8_t is_netascii_char(char c);
uint8_t is_netascii_str(char* str);
uint8_t is_netascii_buf(char* buf, uint64_t len);
#endif
|