20.06.2012, 17:17
Im trying to make a custom format,
w/o success, hope you can help me to make it correctly
Код:
stock format_ex(lang, str[], size, const text_eng, const text_heb, {Float,_}:...)
{
switch(lang) {
case 1: format(str, size, text_heb, {Float,_}:...);
default: format(str, size, text_eng, {Float,_}:...);
}
return 1;
}

