LOC_getLocalDateFormat Function (ROM Call 0x58F)

AMS 2.02 or higher system.h

const char *LOC_getLocalDateFormat (void);

Returns a pointer to the date format string specified by the current language mode setting.

Example:

char date[16];
short y = 2000, m = 6, d = 9;
// Format date according to current language.
LOC_formatDate(LOC_getLocalDateFormat(), y, m, d, date);


Used by: LOC_localVersionDate


See also: LOC_formatDate, LOC_localVersionDate