diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-07-03 17:50:55 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-07-03 17:54:24 +0200 |
commit | 717603e391b52983ca1fd218e7333a1b9dfc5c05 (patch) | |
tree | 1a4da5a932aeaa9da207d46e4f71b8bc566e2c27 /src/shared/fileio.h | |
parent | 98be1a746ac0d7a17e69ccb05936a4d6b3223e97 (diff) |
machinectl: show /etc/os-release information of container in status output
Diffstat (limited to 'src/shared/fileio.h')
-rw-r--r-- | src/shared/fileio.h | 7 |
1 files changed, 5 insertions, 2 deletions
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); |