diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/netascii.h | 9 | ||||
-rw-r--r-- | inc/placeholder.h | 5 |
2 files changed, 9 insertions, 5 deletions
diff --git a/inc/netascii.h b/inc/netascii.h new file mode 100644 index 0000000..096b1c3 --- /dev/null +++ b/inc/netascii.h @@ -0,0 +1,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 diff --git a/inc/placeholder.h b/inc/placeholder.h deleted file mode 100644 index 106cd4e..0000000 --- a/inc/placeholder.h +++ /dev/null @@ -1,5 +0,0 @@ -// This file is a placeholder so git keeps the inc/ folder. -#ifndef NBTPD_PLACEHOLDER_H -#define NBTPD_PLACEHOLDER_H - -#endif |