OSDN Git Service

imap-send.c: more style fixes
authorJunio C Hamano <gitster@pobox.com>
Wed, 9 Jul 2008 23:37:38 +0000 (16:37 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 26 Jul 2008 04:51:30 +0000 (21:51 -0700)
commit9f1ad541f95cf6b9024683c8883bfb0ca86f9a3d
tree3e345086878050e1aa74b2e82362821eb096d27d
parent95c539081e8519e00155c284ac7519727bbacc67
imap-send.c: more style fixes

The previous one sqeezed unnecessary whitespaces and joined function type
and name in the definition split across lines.  This patch further fixes
many remaining style issues:

 - We are not particularly fond of typedef to hide the underlying struct
   definitions.

 - Asterisk comes next variable, i.e. "type *var", not "type * var" nor
   "type* var".

 - Casting to pointer to a type is "(type *)", not "(type*)".

 - An open brace comes on the same line as closing parenthesis of "if (...)"
   condition; "else" comes on the same line as closing brace of its
   corresponding "if (...) {".

 - Avoid single liner "if (...) <stmt>;"; they should be on two separate
   lines.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
imap-send.c