aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_print.h
blob: fff7af5ba13c28cb9e0813eaeecd51e659f5d1aa (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 "globals.h"

// function declarations
void note(const char *fmt,...);
void err(const char *fmt,...);

#endif