X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Futil.h;h=97e1b1ba41d5ced38b93bbc13227930da447900c;hb=be11c12e49d39a0f1f0f83a67a212c3ff0e98b3d;hp=f1cd080e4263385f623d7c62dd6594694ca41281;hpb=2e22afe909cd5fa003347aa91ad15f0516e5047f;p=elogind.git diff --git a/src/util.h b/src/util.h index f1cd080e4..97e1b1ba4 100644 --- a/src/util.h +++ b/src/util.h @@ -1,4 +1,4 @@ -/*-*- Mode: C; c-basic-offset: 8 -*-*/ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ #ifndef fooutilhfoo #define fooutilhfoo @@ -61,6 +61,7 @@ typedef struct dual_timestamp { #define FORMAT_TIMESPAN_MAX 64 #define ANSI_HIGHLIGHT_ON "\x1B[1;31m" +#define ANSI_HIGHLIGHT_GREEN_ON "\x1B[1;32m" #define ANSI_HIGHLIGHT_OFF "\x1B[0m" usec_t now(clockid_t clock); @@ -212,6 +213,8 @@ int safe_mkdir(const char *path, mode_t mode, uid_t uid, gid_t gid); int mkdir_parents(const char *path, mode_t mode); int mkdir_p(const char *path, mode_t mode); +int parent_of_path(const char *path, char **parent); + int rmdir_parents(const char *path, const char *stop); int get_process_name(pid_t pid, char **name); @@ -316,7 +319,6 @@ void sigset_add_many(sigset_t *ss, ...); char* gethostname_malloc(void); char* getlogname_malloc(void); int getttyname_malloc(char **r); -int getmachineid_malloc(char **r); int chmod_and_chown(const char *path, mode_t mode, uid_t uid, gid_t gid); @@ -332,6 +334,10 @@ int columns(void); int running_in_chroot(void); +char *ellipsize(const char *s, unsigned length, unsigned percent); + +int touch(const char *path); + const char *ioprio_class_to_string(int i); int ioprio_class_from_string(const char *s);