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