From 42f538cc66546997a166dbe67e489c9afabbb908 Mon Sep 17 00:00:00 2001 From: Vincent Douillet Date: Tue, 23 Jan 2024 09:22:00 +0100 Subject: download files --- util.h | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'util.h') diff --git a/util.h b/util.h index 460ed9e..2205808 100644 --- a/util.h +++ b/util.h @@ -3,18 +3,10 @@ /* * Reads the file denoted by path into a newly allocated output buffer. Returns - * 0 for success, -1 for error. read_size is the size of output buffer (only to - * be used in case of success). + * 0 for success, -1 for error. The size_t is the size of output buffer (only + * to be used in case of success). */ int -read_file(char *path, char **output, size_t * read_size); - -/* - * Copies the provided string to a newly allocated buffer. Length of the - * created string is the same as the provided string. - * Returns the new string or NULL in case of failure. - */ -char * -v_strcpy(char *str, size_t len); +read_file(char *, char **, size_t *); #endif /* UTIL_H */ -- cgit v1.2.3