blob: 2857621b4c87c6c590f29ee075fec7c82664a253 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SHARED_SPLASH_HH
#define SHARED_SPLASH_HH 1
#pragma once
namespace splash
{
void init_client(void);
void init_server(void);
std::string_view get(void);
} // namespace splash
#endif // SHARED_SPLASH_HH
|