X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fshared%2Ffileio.h;h=5122a9a4de9387084e8e37bde0d61078400a468c;hb=a1948c7bfeb87b54bc7715a44490c01593ee6e23;hp=0ca6878ea48e487bf6c7b340cb7c8e899602ae74;hpb=b4bc041b1756aab117df40abdcc16a9dc2e72d07;p=elogind.git diff --git a/src/shared/fileio.h b/src/shared/fileio.h index 0ca6878ea..5122a9a4d 100644 --- a/src/shared/fileio.h +++ b/src/shared/fileio.h @@ -25,13 +25,21 @@ #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); + +int get_status_field(const char *filename, const char *pattern, char **field);