diff options
Diffstat (limited to 'inc/netascii.h')
-rw-r--r-- | inc/netascii.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/netascii.h b/inc/netascii.h index ada2051..ae80bae 100644 --- a/inc/netascii.h +++ b/inc/netascii.h @@ -1,9 +1,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, uint64_t len); +uint8_t is_netascii_buf(char *buf, size_t len); #endif |