Coverage Report

Created: 2025-12-28 06:36

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/zlib-ng/insert_string.c
Line
Count
Source
1
/* insert_string.c -- make insert_string functions from static inlined functions
2
 *
3
 * Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler
4
 * For conditions of distribution and use, see copyright notice in zlib.h
5
 *
6
 */
7
8
#include "zbuild.h"
9
#include "deflate.h"
10
#include "insert_string_p.h"
11
12
174k
void insert_string(deflate_state *const s, uint32_t str, uint32_t count) {
13
174k
    insert_string_static(s, str, count);
14
174k
}
15
16
215k
void insert_string_roll(deflate_state *const s, uint32_t str, uint32_t count) {
17
215k
    insert_string_roll_static(s, str, count);
18
215k
}