blob: 2a370f9cdc10e11fae64c2266145e8f3b7f345aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef SHARED_SPLASH_HH
#define SHARED_SPLASH_HH 1
#pragma once
namespace splash
{
void init(void);
const char* get(void);
} // namespace splash
#endif /* SHARED_SPLASH_HH */
|