comparison subreader.c @ 26759:8eff880f638c

cosmetics: Remove useless parentheses from return statements.
author diego
date Fri, 16 May 2008 09:42:28 +0000
parents e03e2d2204b6
children 32ab01bb3404
comparison
equal deleted inserted replaced
26758:9fb1d2c3dbd4 26759:8eff880f638c
66 */ 66 */
67 unsigned long previous_sub_end; 67 unsigned long previous_sub_end;
68 #endif 68 #endif
69 69
70 static int eol(char p) { 70 static int eol(char p) {
71 return (p=='\r' || p=='\n' || p=='\0'); 71 return p=='\r' || p=='\n' || p=='\0';
72 } 72 }
73 73
74 /* Remove leading and trailing space */ 74 /* Remove leading and trailing space */
75 static void trail_space(char *s) { 75 static void trail_space(char *s) {
76 int i = 0; 76 int i = 0;