From 3a54a773715d68cc7e67c59d7d70fec5ae946c4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Madar=C3=A1sz?= Date: Tue, 4 May 2021 16:05:25 +0200 Subject: [PATCH] rem func --- code/common/packets/packet.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/common/packets/packet.c b/code/common/packets/packet.c index 1dd9adb..46f9af5 100644 --- a/code/common/packets/packet.c +++ b/code/common/packets/packet.c @@ -14,10 +14,6 @@ pkt_handler pkt_handlers[] = { uint8_t pkt_buffer[PKT_BUFSIZ]; -int32_t pkt_header_encode(pkt_header *table) { - return 0; -} - int32_t pkt_header_decode(pkt_header *table, void *data, size_t datalen) { cw_unpack_context uc = {0}; pkt_unpack_msg_raw(&uc, data, datalen, PKT_HEADER_ELEMENTS);