diff options
author | Ren Kararou <[email protected]> | 2024-12-31 02:18:40 -0600 |
---|---|---|
committer | Ren Kararou <[email protected]> | 2024-12-31 02:18:40 -0600 |
commit | f6b4ac41eec72a25c703c63f43bd1104049a405c (patch) | |
tree | 6fc60798944ac010c22ede4e2e9e33d6b97d39e0 /inc/netascii.h | |
parent | 810de0a90148d5dc7fe5919949220a00d14f6447 (diff) | |
download | nbtpd-f6b4ac41eec72a25c703c63f43bd1104049a405c.tar.gz nbtpd-f6b4ac41eec72a25c703c63f43bd1104049a405c.tar.bz2 nbtpd-f6b4ac41eec72a25c703c63f43bd1104049a405c.zip |
complete setup code; complete initial packet handling
Diffstat (limited to 'inc/netascii.h')
-rw-r--r-- | inc/netascii.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/netascii.h b/inc/netascii.h index 096b1c3..ada2051 100644 --- a/inc/netascii.h +++ b/inc/netascii.h @@ -3,7 +3,7 @@ #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); +uint8_t is_netascii_str(char *str); +uint8_t is_netascii_buf(char *buf, uint64_t len); #endif |