Get rid of main
[c11tester.git] / params.h
index a4a1a8c298bfb567305a3c75dc2f6162b2762ab4..d6f5ec9a9fc5a5cf51b7ea3d8571d518b9aaac37 100644 (file)
--- a/params.h
+++ b/params.h
@@ -6,19 +6,14 @@
  * the model checker.
  */
 struct model_params {
-       unsigned int enabledcount;
-       unsigned int bound;
        unsigned int uninitvalue;
        int maxexecutions;
+       bool nofork;
 
        /** @brief Verbosity (0 = quiet; 1 = noisy; 2 = noisier) */
        int verbose;
-
-       /** @brief Command-line argument count to pass to user program */
-       int argc;
-
-       /** @brief Command-line arguments to pass to user program */
-       char **argv;
 };
 
-#endif /* __PARAMS_H__ */
+void param_defaults(struct model_params *params);
+
+#endif /* __PARAMS_H__ */