Line data Source code
1 : /* SPDX-License-Identifier: LGPL-2.1+ */ 2 : 3 : #include "nulstr-util.h" 4 : #include "string-util.h" 5 : 6 171 : bool nulstr_contains(const char *nulstr, const char *needle) { 7 : const char *i; 8 : 9 171 : if (!nulstr) 10 0 : return false; 11 : 12 246 : NULSTR_FOREACH(i, nulstr) 13 246 : if (streq(i, needle)) 14 171 : return true; 15 : 16 0 : return false; 17 : }