aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_util.h
blob: 2fd60e7a5853f208f4343c9bdc58988f7b504f43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
 * @file util.h
 * @author Gertjan van den Burg
 * @date August, 2013
 * @brief Header file for util.c
 *
 * @details
 * Function declarations for utility functions of the program.
 *
 */

#ifndef GENSVM_UTIL_H
#define GENSVM_UTIL_H

#include "globals.h"

// forward declarations
struct GenData;
struct GenModel;

// function declarations
int gensvm_check_argv(int argc, char **argv, char *str);
int gensvm_check_argv_eq(int argc, char **argv, char *str);

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

#endif