Where can I find the nrf_gzll.h file in nRF Connect SDK ?

When I recently tried to write a Gazell project using the nRF Connect SDK, I found that many files referenced the `nrf_gzll.h` file, but I did not find it in the nRF Connect SDK directory. Can you tell me where it is or how it was created?

For example, in `\sdk-nrf-main\samples\gazell\gzp_dynamic_pairing_device\src\main.c`:

/*
 * Copyright (c) 2021 Nordic Semiconductor ASA
 *
 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
 */

#include <zephyr/kernel.h>
#include <zephyr/settings/settings.h>
#include <dk_buttons_and_leds.h>
#include <nrf_gzll.h>
#include <gzll_glue.h>
#include <gzp.h>

#include <zephyr/logging/log.h>

LOG_MODULE_REGISTER(app);

/* Pipes 0 and 1 are reserved for GZP pairing and data. See gzp.h. */
#define UNENCRYPTED_DATA_PIPE     2

Related