X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fbasic%2Fstrv.c;h=9decbb4190c4282352900679fe01ce1c8db91a03;hb=34c7fcb14d705141c71b5b63a2f044a51ffbd92b;hp=ea5e57acdb0430406f7d8c7b03652cbe207163c8;hpb=d1325d57413c007e17847074c70005c40e32bc9d;p=elogind.git diff --git a/src/basic/strv.c b/src/basic/strv.c index ea5e57acd..9decbb419 100644 --- a/src/basic/strv.c +++ b/src/basic/strv.c @@ -633,6 +633,8 @@ char **strv_split_nulstr(const char *s) { return r; } +/// UNNEEDED by elogind +#if 0 bool strv_overlap(char **a, char **b) { char **i; @@ -658,8 +660,6 @@ char **strv_sort(char **l) { return l; } -/// UNNEEDED by elogind -#if 0 bool strv_equal(char **a, char **b) { if (!a || !b) return a == b; @@ -670,7 +670,6 @@ bool strv_equal(char **a, char **b) { return true; } -#endif // 0 void strv_print(char **l) { char **s; @@ -679,8 +678,6 @@ void strv_print(char **l) { puts(*s); } -/// UNNEEDED by elogind -#if 0 int strv_extendf(char ***l, const char *format, ...) { va_list ap; char *x;