From 717603e391b52983ca1fd218e7333a1b9dfc5c05 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 3 Jul 2014 17:50:55 +0200 Subject: machinectl: show /etc/os-release information of container in status output --- src/shared/fileio.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/shared/fileio.h') diff --git a/src/shared/fileio.h b/src/shared/fileio.h index 06c2887157..5122a9a4de 100644 --- a/src/shared/fileio.h +++ b/src/shared/fileio.h @@ -25,16 +25,19 @@ #include "macro.h" -int write_string_to_file(FILE *f, const char *line); +int write_string_stream(FILE *f, const char *line); int write_string_file(const char *fn, const char *line); int write_string_file_atomic(const char *fn, const char *line); int read_one_line_file(const char *fn, char **line); int read_full_file(const char *fn, char **contents, size_t *size); +int read_full_stream(FILE *f, char **contents, size_t *size); ssize_t sendfile_full(int out_fd, const char *fn); int parse_env_file(const char *fname, const char *separator, ...) _sentinel_; -int load_env_file(const char *fname, const char *separator, char ***l); +int load_env_file(FILE *f, const char *fname, const char *separator, char ***l); +int load_env_file_pairs(FILE *f, const char *fname, const char *separator, char ***l); + int write_env_file(const char *fname, char **l); int executable_is_script(const char *path, char **interpreter); -- cgit v1.2.3-54-g00ecf