diff options
Diffstat (limited to 'bench')
| -rw-r--r-- | bench/README.md | 9 | ||||
| -rw-r--r-- | bench/bench.c | 0 | ||||
| -rw-r--r-- | bench/bench.h | 6 |
3 files changed, 15 insertions, 0 deletions
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 --- /dev/null +++ b/bench/bench.c 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 |
