From 8241a58d42afaad3f326b0c14e651aeb83864d60 Mon Sep 17 00:00:00 2001 From: serturx <56551721+serturx@users.noreply.github.com> Date: Wed, 5 Oct 2022 18:33:14 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: David Leal --- misc/run_length_encoding.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/run_length_encoding.c b/misc/run_length_encoding.c index 408f7b06..59e3342f 100644 --- a/misc/run_length_encoding.c +++ b/misc/run_length_encoding.c @@ -2,7 +2,7 @@ * @file * @author [serturx](https://github.com/serturx/) * @brief Encode a null terminated string using [Run-length encoding](https://en.wikipedia.org/wiki/Run-length_encoding) - * @section Description + * @details * Run-length encoding is a lossless compression algorithm. * It works by counting the consecutive occurences symbols * and encodes that series of consecutive symbols into the @@ -13,8 +13,8 @@ * */ -#include /// for printf -#include ///for string functions +#include /// for IO operations +#include /// for string functions #include /// for malloc/free #include /// for assert