Skip to content

Commit f596c9b

Browse files
committed
working directory
1 parent e40b329 commit f596c9b

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

0x03-debugging/0-main.c

+2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
* main - tests function that prints if integer is positive or negative
55
* Return: 0
66
*/
7+
78
int main(void)
89
{
910
int i;
1011

1112
i = 0;
1213
positive_or_negative(i);
14+
1315
return (0);
1416
}

0x03-debugging/main.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include <stdio.h>
55

66
void positive_or_negative(int i);
7-
int largest_number(largest);
7+
void largest_number(int largest);
8+
void print_remaining_days(int day);
89

910
#endif /* MAIN_H */

0 commit comments

Comments
 (0)