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