diff options
Diffstat (limited to 'include/util.h')
| -rw-r--r-- | include/util.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h new file mode 100644 index 0000000..375a9c2 --- /dev/null +++ b/include/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 MSVMMAJ_UTIL_H +#define MSVMMAJ_UTIL_H + +#include "globals.h" + +// forward declarations +struct MajData; +struct MajModel; + +// function declarations +int msvmmaj_check_argv(int argc, char **argv, char *str); +int msvmmaj_check_argv_eq(int argc, char **argv, char *str); + +void note(const char *fmt,...); + +#endif |
