Replaced open_form() with new_fs() for the last time and dropped the function.
[mmh] / h / utils.h
index 8246a5d..7ee6046 100644 (file)
--- a/h/utils.h
+++ b/h/utils.h
@@ -1,13 +1,18 @@
-
 /*
- * utils.h -- utility prototypes
- *
- * $Id$
- */
+** utils.h -- utility prototypes
+*/
 
 void *mh_xmalloc(size_t);
 void *mh_xrealloc(void *, size_t);
 char *pwd(void);
 char *add(char *, char *);
-void create_folder(char *, int, void (*)());
+int folder_exists(char *);
+void create_folder(char *, int, void (*)(int));
 int num_digits(int);
+
+struct msgs_array {
+       int max, size;
+       char **msgs;
+};
+
+void app_msgarg(struct msgs_array *, char *);