X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Ffileio.h;h=5ae51c1e28a9daa56d4fee59f25a11bf2f06922d;hb=d896ac2d2fbce41a0b11a0618a685adeaf18b8fe;hp=59e41502b1d96e485f79efdbbcda4c4e4d31d28d;hpb=69ab80881552d5f79ca95f6b3be48ad122ab1ec2;p=elogind.git diff --git a/src/shared/fileio.h b/src/shared/fileio.h index 59e41502b..5ae51c1e2 100644 --- a/src/shared/fileio.h +++ b/src/shared/fileio.h @@ -25,15 +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_no_create(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); 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);