diff options
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/util.h b/include/util.h index ba95b03..651a958 100644 --- a/include/util.h +++ b/include/util.h @@ -47,15 +47,6 @@ typedef struct sparse_map_t { } sparse_map_t; /* - Convert back to forward slashed, remove all preceeding and trailing slashes, - collapse all sequences of slashes, remove all path components that are '.' - and returns failure state if one of the path components is '..'. - - Returns 0 on success. -*/ -int canonicalize_name(char *filename); - -/* A wrapper around the write() system call. It retries the write if it is interrupted by a signal or only part of the data was written. Returns 0 on success. Writes to stderr on failure using 'errstr' as a perror style @@ -109,13 +100,6 @@ int popd(void); int padd_file(int outfd, uint64_t size, size_t blocksize); /* - If the environment variable SOURCE_DATE_EPOCH is set to a parsable number - that fits into an unsigned 32 bit value, return its value. Otherwise, - default to 0. - */ -uint32_t get_source_date_epoch(void); - -/* Helper for allocating data structures with flexible array members. 'base_size' is the size of the struct itself, 'item_size' the size of a |