diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2016-05-09 20:45:06 +0200 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2016-05-09 20:45:06 +0200 |
| commit | 993c503ce1b440be6947bc91fbf1fa6098569b51 (patch) | |
| tree | 49cf60984f3e679b810a3089b15f952e5ac7f4f5 /include/gensvm_util.h | |
| parent | rename strutil to gensvm_strutil (diff) | |
| download | gensvm-993c503ce1b440be6947bc91fbf1fa6098569b51.tar.gz gensvm-993c503ce1b440be6947bc91fbf1fa6098569b51.zip | |
use gensvm namespace for all crossval/timer/util
Diffstat (limited to 'include/gensvm_util.h')
| -rw-r--r-- | include/gensvm_util.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/gensvm_util.h b/include/gensvm_util.h new file mode 100644 index 0000000..fe8d2a3 --- /dev/null +++ b/include/gensvm_util.h @@ -0,0 +1,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 |
