diff options
Diffstat (limited to 'include/gensvm_print.h')
| -rw-r--r-- | include/gensvm_print.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/gensvm_print.h b/include/gensvm_print.h new file mode 100644 index 0000000..fff7af5 --- /dev/null +++ b/include/gensvm_print.h @@ -0,0 +1,22 @@ +/** + * @file gensvm_print.h + * @author Gertjan van den Burg + * @date May, 2016 + * @brief Header file for gensvm_print.c + * + * @details + * Function declarations for printing to stdout and stderr. + * + */ + +#ifndef GENSVM_PRINT_H +#define GENSVM_PRINT_H + +// includes +#include "globals.h" + +// function declarations +void note(const char *fmt,...); +void err(const char *fmt,...); + +#endif |
