Coverage Report

Created: 2026-07-25 06:58

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
211k
Z_INTERNAL void insert_knuth_batch(deflate_state *const s, unsigned char *window, uint32_t str, uint32_t count) {
13
211k
    insert_knuth_batch_static(s, window, str, count);
14
211k
}
15
16
214k
Z_INTERNAL void insert_roll_batch(deflate_state *const s, unsigned char *window, uint32_t str, uint32_t count) {
17
214k
    insert_roll_batch_static(s, window, str, count);
18
214k
}
19
20
0
Z_INTERNAL void insert_knuth_batch_head(deflate_state *const s, unsigned char *window, uint32_t str, uint32_t count) {
21
0
    insert_knuth_batch_head_static(s, window, str, count);
22
0
}