X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Ffileio.h;h=c256915799a927334f5e1d9351bf5327707a23ed;hb=76253e73f9c9c24fec755e485516f3b55d0707b4;hp=a0aae28bae75685bfe9ff01332af72cbb3b0fd4d;hpb=68fee104e630eb19f04b8196a83c14c2c9c469e7;p=elogind.git diff --git a/src/shared/fileio.h b/src/shared/fileio.h index a0aae28ba..c25691579 100644 --- a/src/shared/fileio.h +++ b/src/shared/fileio.h @@ -25,15 +25,22 @@ #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); +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); + +int get_status_field(const char *filename, const char *pattern, char **field);