forked from mruby/mruby
-
Notifications
You must be signed in to change notification settings - Fork 0
FAQ (coding style)
monaka edited this page Mar 14, 2013
·
4 revisions
There are some reasons.
-
_t
suffix is reserved by POSIX. Even though We don't express to support POSIX, we can't ignore it. -
We have already defined some types with no
_t
suffix like mrb_int. We want to keep naming consistency. -
Matz don't like
_t
suffix. :-p
I'm sorry. It is ill formed. Please report to issue tracking or send pull request.
It's possible even if your compiler supports C99. But it's necessary to obtain the source code portability. Please define them by yourself.
Definitions depends on your target architecture and your compiler implementation. So it's difficult to give you general guidelines. Please consult the compiler vendor.