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