summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/__mb_cur_max.c
blob: 2f8affa27ccc618f89b4b415b358c782b218bb2e (plain)
1
2
3
4
5
6
int __mb_cur_max(void)
{
	// TODO: if locale (c/utf8) will be implemented
	// then return the correct value here if c then 1 else if utf8 then 4
	return 1;
}