Commit 12184522 12184522f07c1fa413cbd01f5e7584067d5747cc by Sergey Poznyakoff

(mh_format): Changed declaration.

(mh_format_debug): New function.
1 parent 79cc7f2f
Showing 1 changed file with 2 additions and 1 deletions
...@@ -224,9 +224,10 @@ int mh_getyn __P((const char *fmt, ...)); ...@@ -224,9 +224,10 @@ int mh_getyn __P((const char *fmt, ...));
224 int mh_check_folder __P((char *pathname, int confirm)); 224 int mh_check_folder __P((char *pathname, int confirm));
225 225
226 int mh_format __P((mh_format_t *fmt, message_t msg, size_t msgno, 226 int mh_format __P((mh_format_t *fmt, message_t msg, size_t msgno,
227 char *buffer, size_t bufsize)); 227 size_t width, char **pret));
228 void mh_format_dump __P((mh_format_t *fmt)); 228 void mh_format_dump __P((mh_format_t *fmt));
229 int mh_format_parse __P((char *format_str, mh_format_t *fmt)); 229 int mh_format_parse __P((char *format_str, mh_format_t *fmt));
230 void mh_format_debug __P((int val));
230 void mh_format_free __P((mh_format_t *fmt)); 231 void mh_format_free __P((mh_format_t *fmt));
231 mh_builtin_t *mh_lookup_builtin __P((char *name, int *rest)); 232 mh_builtin_t *mh_lookup_builtin __P((char *name, int *rest));
232 233
......