X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=util.h;h=ba27c759e805fd34d09e2463a48b5f6ee97d02e4;hp=ecf3b15e33721596950fd039513abeedce0b567e;hb=843d2643849a1ec63034012c8fe50bfaad23190b;hpb=24a6e4a401f0be0c4cd67621186792d0b7e401a1 diff --git a/util.h b/util.h index ecf3b15e3..ba27c759e 100644 --- a/util.h +++ b/util.h @@ -89,6 +89,7 @@ static inline bool is_path_absolute(const char *p) { bool endswith(const char *s, const char *postfix); bool startswith(const char *s, const char *prefix); +bool startswith_no_case(const char *s, const char *prefix); bool first_word(const char *s, const char *word); @@ -178,6 +179,8 @@ bool chars_intersect(const char *a, const char *b); char *format_timestamp(char *buf, size_t l, usec_t t); +int make_stdio(int fd); + #define DEFINE_STRING_TABLE_LOOKUP(name,type) \ const char *name##_to_string(type i) { \ if (i < 0 || i >= (type) ELEMENTSOF(name##_table)) \