LCOV - code coverage report | ||||||||||||||||||||||
![]() | ||||||||||||||||||||||
|
||||||||||||||||||||||
![]() |
Line data Source code 1 : /** 2 : * @file 3 : * 4 : * @brief 5 : * 6 : * @copyright BSD License (see LICENSE.md or https://www.libelektra.org) 7 : */ 8 : 9 : #include <kdb.h> 10 : #include <stdio.h> 11 : 12 0 : int main (void) 13 : { 14 0 : Key * k = keyNew ("user/hello", KEY_VALUE, "Hello World", KEY_END); 15 0 : printf ("%s\n", (char *) keyValue (k)); 16 0 : keyDel (k); 17 : 18 : return 0; 19 : } |
![]() |
Generated by: LCOV version 1.13 |