From 08ce54211ce4b8d6092321ca1b28773a680ddc45 Mon Sep 17 00:00:00 2001 From: Jannis Hoffmann Date: Tue, 9 Jul 2024 16:05:46 +0200 Subject: Added missing function prototype signatures. Corrected socket_broadcast name to socket_broadcast4 in socket_if.h. Added const to fmt_str. --- include/uint_t.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/uint_t.h') 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 -- cgit v1.2.3