Coverage Report

Created: 2026-02-24 06:18

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
19.2M
void insert_string(deflate_state *const s, uint32_t str, uint32_t count) {
13
19.2M
    insert_string_static(s, str, count);
14
19.2M
}
15
16
6.76M
void insert_string_roll(deflate_state *const s, uint32_t str, uint32_t count) {
17
6.76M
    insert_string_roll_static(s, str, count);
18
6.76M
}