nothing actually done

This commit is contained in:
MihailRis
2024-04-24 07:35:46 +03:00
parent 051f0b8c6a
commit 1ecc608ead
19 changed files with 44 additions and 48 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#include "rle.h"
#include "rle.hpp"
size_t rle::decode(const ubyte* src, size_t srclen, ubyte* dst) {
size_t offset = 0;
+3 -3
View File
@@ -1,5 +1,5 @@
#ifndef CODERS_RLE_H_
#define CODERS_RLE_H_
#ifndef CODERS_RLE_HPP_
#define CODERS_RLE_HPP_
#include "../typedefs.h"
@@ -14,4 +14,4 @@ namespace extrle {
size_t decode(const ubyte* src, size_t length, ubyte* dst);
}
#endif // CODERS_RLE_H_
#endif // CODERS_RLE_HPP_
+2
View File
@@ -8,6 +8,8 @@
#include <sstream>
#include <assert.h>
// FIXME: refactor this monster
using namespace toml;
Section::Section(std::string name) : name(name) {