aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_util.h
blob: fe8d2a38653c06e6b4b7b69c6f81000f1d4c73d7 (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
/**
 * @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,...);

#endif