comp20003-project01/common.h
2021-08-25 23:27:24 +10:00

23 lines
342 B
C
Executable file

#ifndef STDIO_HEADER
#define STDIO_HEADER
#include <stdio.h>
#endif
#ifndef STDLIB_HEADER
#define STDLIB_HEADER
#include <stdlib.h>
#endif
#ifndef COMMON_HEADER
#define COMMON_HEADER
void checkNullPointer(void *ptr);
void checkInputArgs(int argc, char **argv, FILE **datasetFile, \
FILE **polygonFile, FILE **outputFile);
#endif