LCOV - code coverage report
Current view: top level - basic - nulstr-util.c (source / functions) Hit Total Coverage
Test: systemd_full.info Lines: 5 7 71.4 %
Date: 2019-08-23 13:36:53 Functions: 1 1 100.0 %
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed Branches: 5 8 62.5 %

           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                 :            : }

Generated by: LCOV version 1.14