X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fshared%2Ffileio.h;h=06c28871575ce5707addb916d12f573258dd9b60;hp=34ed3c1e978fe62e219d88978c8acdfb1998f4e9;hb=aa62a8936f5983770e90b791083d55107659f7a1;hpb=f73141d7657b3f60b8669bc8386413d8a8a372c6 diff --git a/src/shared/fileio.h b/src/shared/fileio.h index 34ed3c1e9..06c288715 100644 --- a/src/shared/fileio.h +++ b/src/shared/fileio.h @@ -21,13 +21,22 @@ along with systemd; If not, see . ***/ #include +#include + #include "macro.h" +int write_string_to_file(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); +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 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);