Coverage Report

Created: 2026-05-30 06:45

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