blob: ada20512b59e43dd23932ee1c61a0c0ab21389c8 (
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
|