Skip to content

Commit 18f32ea

Browse files
committed
remove variable name in function declaration
1 parent c4565c3 commit 18f32ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

chapter02/2-10.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/*
22
* Exercise 2-10. Rewrite the function lower, which converts upper case letters
33
* to lower case, with a conditional expression instead of if-else.
4+
*
45
* By Faisal Saadatmand
56
*/
67

78
#include <stdio.h>
89

910
/* functions */
10-
int lower(char c);
11+
int lower(char);
1112

1213
/* lower: convert c to lower case; ASCII only */
1314
int lower(char c)

0 commit comments

Comments
 (0)