added protos for util_strcasestr() and util_parse_.*_date()
Showing
1 changed file
with
5 additions
and
0 deletions
... | @@ -208,6 +208,11 @@ extern int util_msgset __P ((char *, size_t **, int *, int)); | ... | @@ -208,6 +208,11 @@ extern int util_msgset __P ((char *, size_t **, int *, int)); |
208 | extern int util_upper __P ((char *)); | 208 | extern int util_upper __P ((char *)); |
209 | extern struct imap4d_command *util_getcommand __P ((char *, | 209 | extern struct imap4d_command *util_getcommand __P ((char *, |
210 | struct imap4d_command [])); | 210 | struct imap4d_command [])); |
211 | extern int util_parse_internal_date0 __P((char *date, time_t *timep, char **endp)); | ||
212 | extern int util_parse_internal_date __P((char *date, time_t *timep)); | ||
213 | extern int util_parse_header_date __P((char *date, time_t *timep)); | ||
214 | extern int util_parse_rfc822_date __P((char *date, time_t *timep)); | ||
215 | extern char *util_strcasestr __P((const char *haystack, const char *needle)); | ||
211 | 216 | ||
212 | #ifdef __cplusplus | 217 | #ifdef __cplusplus |
213 | } | 218 | } | ... | ... |
-
Please register or sign in to post a comment