Skip to content

Commit 7e7c7f2

Browse files
committed
Header file containing all the prototypes of the functions used
1 parent d9039cb commit 7e7c7f2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#ifndef VARIADIC
2+
#define VARIADIC
3+
4+
int sum_them_all(const unsigned int n, ...);
5+
void print_numbers(const char *separator, const unsigned int n, ...);
6+
void print_strings(const char *separator, const unsigned int n, ...);
7+
void print_all(const char * const format, ...);
8+
9+
#endif

0 commit comments

Comments
 (0)