From 06692fdb5bf3d5e53f3f4847e1f8da18180075cb Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 8 Apr 2023 17:48:04 +0900 Subject: env-file: introduce parse_env_file_fdv() --- src/basic/env-file.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/basic/env-file.h') diff --git a/src/basic/env-file.h b/src/basic/env-file.h index fa22d2209c..2465eeddf4 100644 --- a/src/basic/env-file.h +++ b/src/basic/env-file.h @@ -8,6 +8,7 @@ #include "macro.h" int parse_env_filev(FILE *f, const char *fname, va_list ap); +int parse_env_file_fdv(int fd, const char *fname, va_list ap); int parse_env_file_sentinel(FILE *f, const char *fname, ...) _sentinel_; #define parse_env_file(f, fname, ...) parse_env_file_sentinel(f, fname, __VA_ARGS__, NULL) int parse_env_file_fd_sentinel(int fd, const char *fname, ...) _sentinel_; -- cgit v1.2.1