diff options
| author | akiyamn | 2020-09-03 23:33:45 +1000 |
|---|---|---|
| committer | akiyamn | 2020-09-03 23:33:45 +1000 |
| commit | a55512edbe175e96a2120be569232274b27e582f (patch) | |
| tree | 584378000e0adae1ea7490fa6e95cea02d1a76a0 /fileutil.h | |
| parent | 4444a375ac7f24ada2932291661d9102791604d9 (diff) | |
| download | fit2100_ass1-a55512edbe175e96a2120be569232274b27e582f.tar.gz fit2100_ass1-a55512edbe175e96a2120be569232274b27e582f.zip | |
Functionality of Task 1 done
Diffstat (limited to 'fileutil.h')
| -rw-r--r-- | fileutil.h | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,2 +1,9 @@ -void to_stdout(char *string, ssize_t size); -int main(int argc, char const *argv[]);
\ No newline at end of file +#ifndef _FILEUTIL_H +#define _FILEUTIL_H + +void to_stdout(char *string); +void to_stderr(char *string); +void print_file(char *read_path); +int main(int argc, char const *argv[]); + +#endif
\ No newline at end of file |
