Craftd:Coding Style

From wiki.vg
Revision as of 18:33, 5 December 2010 by imported>Kev009 (Created page with "== stdbool == Use of the C99 ''bool'' type in <stdbool.h> is encouraged for internal boolean values within craftd. Platforms that do not define this can be worked around with Au...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

stdbool

Use of the C99 bool type in <stdbool.h> is encouraged for internal boolean values within craftd. Platforms that do not define this can be worked around with Autoconf and preprocessor.

NOTE:

When sending over the network, first recast to an int8_t to ensure that it only occupies 1 byte as sizeof(bool) differs from compiler to compiler.