From 4ab1cd42c94d7fd475f1b0ecf89f35dca48781dd Mon Sep 17 00:00:00 2001 From: apio Date: Thu, 1 Dec 2022 18:39:03 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3229779..5bf04cf 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Tiny and easy-to-use C library to parse tar (specifically, the newer [USTAR](htt No third-party dependencies, only a minimally capable standard C library (file IO, number parsing, malloc() and friends, string functions). -Aims to be as portable between systems as possible (has its own implementation of some non-standard functions, such as [strlcpy](https://linux.die.net/man/3/strlcpy) or [strndup](https://linux.die.net/man/3/strndup)), but that still needs some work (minitar still depends on some POSIX functions, such as [basename](https://linux.die.net/man/3/basename) (not present on Windows))). +Aims to be as portable between systems as possible (has its own implementation of some non-standard functions, such as [strlcpy](https://linux.die.net/man/3/strlcpy) or [strndup](https://linux.die.net/man/3/strndup)), but that still needs some work (minitar still depends on some POSIX functions, such as [basename](https://linux.die.net/man/3/basename) (not present on Windows)). Very minimal and bloat-free, currently less than 500 lines :)