We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e40b329 commit f596c9bCopy full SHA for f596c9b
0x03-debugging/0-main.c
@@ -4,11 +4,13 @@
4
* main - tests function that prints if integer is positive or negative
5
* Return: 0
6
*/
7
+
8
int main(void)
9
{
10
int i;
11
12
i = 0;
13
positive_or_negative(i);
14
15
return (0);
16
}
0x03-debugging/main.h
@@ -4,6 +4,7 @@
#include <stdio.h>
void positive_or_negative(int i);
-int largest_number(largest);
+void largest_number(int largest);
+void print_remaining_days(int day);
#endif /* MAIN_H */
0 commit comments