blob: 18aa5534bd5484d54c276ad35c7c711411227683 (
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
|