From 8e16524e1c5c70d8b2aa431774accb2d3e5805f7 Mon Sep 17 00:00:00 2001 From: apio Date: Thu, 12 Jan 2023 20:06:22 +0100 Subject: [PATCH] docs: Add a note about examples to README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8d31cf2..148696a 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,8 @@ int main(int argc, char** argv) The output of this example program when running it with an uncompressed tar archive is identical to that of `tar --list -f archive.tar` with the same uncompressed archive. And in most cases, it's faster as well! +See [examples](examples/) for more examples using minitar. + ## Project structure The user-facing API (functions defined in `minitar.h` and documented in this README) is implemented in `src/tar.c`. Utility and internally-used functions live in `src/util.c`.