28 lines
518 B
C
28 lines
518 B
C
/**
|
|
* Copyright (c) 2024 Dominic Masters
|
|
*
|
|
* This software is released under the MIT License.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#pragma once
|
|
#include "locale/language.h"
|
|
|
|
typedef struct {
|
|
char_t text[LANGUAGE_STRING_KEY_LENGTH_MAX+1];
|
|
} sign_t;
|
|
|
|
/**
|
|
* Initializes a sign.
|
|
*
|
|
* @param sign Sign to initialize.
|
|
*/
|
|
void signInit(sign_t *sign);
|
|
|
|
/**
|
|
* Sets the text of a sign.
|
|
*
|
|
* @param sign Sign to set text for.
|
|
* @param text Text to set.
|
|
*/
|
|
void signTextSet(sign_t *sign, const char_t *text); |