Commit d3841c3b d3841c3bf1d6d3e01a9c82113db39e29bd385a6b by Alain Magloire

* include/mailutils/mutil.h: Added prototype for util_cpystr().

1 parent a5237074
...@@ -56,12 +56,13 @@ extern int mu_parse_imap_date_time __P ((const char **p, struct tm * tm, ...@@ -56,12 +56,13 @@ extern int mu_parse_imap_date_time __P ((const char **p, struct tm * tm,
56 mu_timezone * tz)); 56 mu_timezone * tz));
57 extern int mu_parse_ctime_date_time __P ((const char **p, struct tm * tm, 57 extern int mu_parse_ctime_date_time __P ((const char **p, struct tm * tm,
58 mu_timezone * tz)); 58 mu_timezone * tz));
59 59
60 extern time_t mu_utc_offset __P ((void)); 60 extern time_t mu_utc_offset __P ((void));
61 extern time_t mu_tm2time __P ((struct tm * timeptr, mu_timezone * tz)); 61 extern time_t mu_tm2time __P ((struct tm * timeptr, mu_timezone * tz));
62 extern char * mu_get_homedir __P((void)); 62 extern char * mu_get_homedir __P ((void));
63 extern char * mu_tilde_expansion __P((const char *ref, const char *delim, const char *homedir)); 63 extern char * mu_tilde_expansion __P ((const char *ref, const char *delim, const char *homedir));
64 64
65 extern size_t util_cpystr __P ((char *dst, const char *src, size_t size));
65 66
66 #ifdef __cplusplus 67 #ifdef __cplusplus
67 } 68 }
......