blob: c22b4c9a0a7d7fa1bae2291debab0a1b3678af3e (
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);
}
#endif
|