mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
#ifndef M_STRING_H
|
|
#define M_STRING_H
|
|
|
|
#include "types.h"
|
|
#include "lb_rtc.h"
|
|
#include "m_string_data.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define mString_MAX_STR 0x7FF
|
|
|
|
extern void mString_aram_init();
|
|
extern void mString_Load_StringFromRom(u8* dst, int dst_len, int str_no);
|
|
extern int mString_Load_YearStringFromRom(u8* dst, lbRTC_year_t year);
|
|
extern int mString_Load_MonthStringFromRom(u8* dst, lbRTC_month_t month);
|
|
extern int mString_Load_WeekStringFromRom(u8* dst, lbRTC_weekday_t weekday);
|
|
extern int mString_Load_DayStringFromRom(u8* dst, lbRTC_day_t day);
|
|
extern int mString_Load_HourStringFromRom(u8* dst, lbRTC_hour_t hour);
|
|
extern int mString_Load_HourStringFromRom2(u8* dst, lbRTC_hour_t hour);
|
|
extern int mString_Load_MinStringFromRom(u8* dst, lbRTC_min_t min);
|
|
extern int mString_Load_SecStringFromRom(u8* dst, lbRTC_sec_t sec);
|
|
extern int mString_Load_NumberStringAddUnitFromRom(u8* dst, u16 num, int str_no);
|
|
|
|
#define mString_Load_ArticleFromRom(buf, buf_size, art) mString_Load_StringFromRom(buf, buf_size, mString_ARTICLE_START + art)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|