From 10ab81a0de97513d82d05945c12bff87b02ede27 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sat, 2 Jul 2022 21:10:49 +0200 Subject: Cleanup: move mkdir_p from libcommon to libutil Signed-off-by: David Oberhollenzer --- include/util/util.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'include/util/util.h') diff --git a/include/util/util.h b/include/util/util.h index 4b05340..af7d196 100644 --- a/include/util/util.h +++ b/include/util/util.h @@ -35,4 +35,12 @@ SQFS_INTERNAL sqfs_u32 xxh32(const void *input, const size_t len); */ SQFS_INTERNAL bool is_memory_zero(const void *blob, size_t size); +/* + A wrapper around mkdir() that behaves like 'mkdir -p'. It tries to create + every component of the given path and skips already existing entries. + + Returns 0 on success. +*/ +SQFS_INTERNAL int mkdir_p(const char *path); + #endif /* SQFS_UTIL_H */ -- cgit v1.2.3