diff options
author | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-09 16:05:46 +0200 |
---|---|---|
committer | Jannis Hoffmann <jannis@fehcom.de> | 2024-07-09 16:05:46 +0200 |
commit | 08ce54211ce4b8d6092321ca1b28773a680ddc45 (patch) | |
tree | 9cf7eb2702a408743d59e207e24f8fb1e5ada31d /include/uint_t.h | |
parent | 795ffc5e62e8ba383575dbcd9943a580d4bd3358 (diff) |
Added missing function prototype signatures.
Corrected socket_broadcast name to socket_broadcast4 in socket_if.h.
Added const to fmt_str.
Diffstat (limited to 'include/uint_t.h')
-rw-r--r-- | include/uint_t.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/uint_t.h b/include/uint_t.h index 7bf32c8..529e7b5 100644 --- a/include/uint_t.h +++ b/include/uint_t.h @@ -17,6 +17,10 @@ typedef uint8_t uint8; typedef unsigned char uint8; #endif +extern void uint8_pack(char *, uint8); +extern void uint8_pack_big(char *, uint8); +extern void uint8_unpack(char *, uint8 *); +extern void uint8_unpack_big(char *, uint8 *); #endif #ifndef UINT16_H |