Добавлено ДЗ4

This commit is contained in:
2020-10-12 23:38:41 +03:00
parent f816062f2e
commit e37f95ba81
5 changed files with 71 additions and 0 deletions

11
04_Multifile/fun.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include "outlib.h"
void output(char *str) {
printf("%d: %s\012", Count++, str);
}
void usage(char *prog) {
fprintf(stderr, "%s v%.2f: Print all arguments\012\t"\
"Usage: %s arg1 [arg2 […]]\012", prog, VERSION, prog);
}