From 14b9f07efd4fba308fc24ff1d70fc7e274fc61ee Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Sun, 22 Feb 2026 17:20:09 +1100 Subject: feat(bench): Make benchmarks --- bench/README.md | 9 +++++++++ bench/bench.c | 0 bench/bench.h | 6 ++++++ 3 files changed, 15 insertions(+) create mode 100644 bench/README.md create mode 100644 bench/bench.c create mode 100644 bench/bench.h (limited to 'bench') diff --git a/bench/README.md b/bench/README.md new file mode 100644 index 0000000..4016024 --- /dev/null +++ b/bench/README.md @@ -0,0 +1,9 @@ +# tinyff benching util + +This folder contains benchmarks for every format. It also contains an API which is used to make custom benches. + +## Structure + +`format/`: Contains benchmark tests for formats +`test/`: Contains tests for common formats. These are example programs. +`bench.c & bench.h`: The API for the making the `format/` directory. \ No newline at end of file diff --git a/bench/bench.c b/bench/bench.c new file mode 100644 index 0000000..e69de29 diff --git a/bench/bench.h b/bench/bench.h new file mode 100644 index 0000000..1a7ef78 --- /dev/null +++ b/bench/bench.h @@ -0,0 +1,6 @@ +#ifndef TINYFF_BENCH_H_ +#define TINYFF_BENCH_H_ + + + +#endif // TINYFF_BENCH_H \ No newline at end of file -- cgit v1.2.3