summaryrefslogtreecommitdiff
path: root/src/basic/env-file.h
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-04-08 17:48:04 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2023-04-11 12:33:14 +0900
commit06692fdb5bf3d5e53f3f4847e1f8da18180075cb (patch)
tree4763478dc23638fcfb03e7286f1097ee3915186a /src/basic/env-file.h
parent1dec1c6163f590ef3c95986543772468e96439c1 (diff)
downloadsystemd-06692fdb5bf3d5e53f3f4847e1f8da18180075cb.tar.gz
env-file: introduce parse_env_file_fdv()
Diffstat (limited to 'src/basic/env-file.h')
-rw-r--r--src/basic/env-file.h1
1 files changed, 1 insertions, 0 deletions
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_;