From 7a997f2755f005a3f84b1cdf04ede6906d4e1ca0 Mon Sep 17 00:00:00 2001 From: serturx Date: Mon, 3 Oct 2022 11:40:57 +0200 Subject: [PATCH] fix comment --- misc/run_length_encoding.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/misc/run_length_encoding.c b/misc/run_length_encoding.c index 5fa5b8a81..408f7b060 100644 --- a/misc/run_length_encoding.c +++ b/misc/run_length_encoding.c @@ -13,10 +13,10 @@ * */ -#include //for printf -#include //for string functions -#include //for malloc/free -#include //for assert +#include /// for printf +#include ///for string functions +#include /// for malloc/free +#include /// for assert /** * @brief Encodes a null-terminated string using run-length encoding