File Coverage

ulib/clear.c
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine n/a
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             #ifdef __cplusplus
2             extern "C" {
3             #endif
4              
5             #include "ulib/clear.h"
6              
7             #ifdef __cplusplus
8             }
9             #endif
10              
11 6           void uu_clear(struct_uu_t *io) {
12 6           io->v1.time_low = 0;
13 6           io->v1.time_mid = 0;
14 6           io->v1.time_high_and_version = 0;
15 6           io->v1.clock_seq_and_variant = 0;
16 6           io->v1.node[0] = 0;
17 6           io->v1.node[1] = 0;
18 6           io->v1.node[2] = 0;
19 6           io->v1.node[3] = 0;
20 6           io->v1.node[4] = 0;
21 6           io->v1.node[5] = 0;
22 6           }
23              
24             /* ex:set ts=2 sw=2 itab=spaces: */