diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2016-05-16 18:47:09 +0200 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2016-05-16 18:47:09 +0200 |
| commit | 044dc5a93c33d7aa4c9c98a626890c16446a56fc (patch) | |
| tree | 23cc17a595d36a35ad9cb50e3ab18c2956b5f65c /include/gensvm_print.h | |
| parent | Move includes to header (diff) | |
| download | gensvm-044dc5a93c33d7aa4c9c98a626890c16446a56fc.tar.gz gensvm-044dc5a93c33d7aa4c9c98a626890c16446a56fc.zip | |
major refactor of the code
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 |
