Coverage Report

Created: 2026-07-16 06:59

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
11.5M
Z_INTERNAL void insert_knuth_batch(deflate_state *const s, unsigned char *window, uint32_t str, uint32_t count) {
13
11.5M
    insert_knuth_batch_static(s, window, str, count);
14
11.5M
}
15
16
0
Z_INTERNAL void insert_roll_batch(deflate_state *const s, unsigned char *window, uint32_t str, uint32_t count) {
17
0
    insert_roll_batch_static(s, window, str, count);
18
0
}