blob: a68346139ed104f593dd9a7f7a9ae93b9083023f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com>
* SPDX-License-Identifier: LGPL-2.1-only
*/
#ifndef TURNSMM_INIT_HPP
#define TURNSMM_INIT_HPP
namespace Turns
{
void init(void);
} // namespace Turns
#endif
|