···315 encouraged to have a blank line between the end of the declarations
316 and the first statement in the block.
317000318 - NULL pointers shall be written as NULL, not as 0.
319320 - When declaring pointers, the star sides with the variable
···315 encouraged to have a blank line between the end of the declarations
316 and the first statement in the block.
317318+ - Do not explicitly initialize global variables to 0 or NULL;
319+ instead, let BSS take care of the zero initialization.
320+321 - NULL pointers shall be written as NULL, not as 0.
322323 - When declaring pointers, the star sides with the variable