Prev
Pacemaker Development
Next
2.2.3. Pointers
The
*
goes by the variable name, not the type:
char
*foo;
Use a space before the
*
and after the closing parenthesis in a cast:
char
*foo = (
char
*) bar;
Prev
2.2.2. Line Length
Up
Home
Next
2.2.4. Functions