blob: 4cd1dd96bd27be8f3ed95b6ee3a759294f2b05e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 "gensvm_globals.h"
// function declarations
void note(const char *fmt,...);
void err(const char *fmt,...);
#endif
|