mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-12-22 09:24:54 +01:00
date.c: Rename function to notmuch_parse_date
Now completing the process of making this function "our own". The documentation is deleted here, because we already have the documentation we want in notmuch-private.h.
This commit is contained in:
parent
747f610901
commit
8e4e0559e7
1 changed files with 1 additions and 14 deletions
15
date.c
15
date.c
|
@ -638,21 +638,8 @@ gmime_datetok_table_init (void)
|
|||
}
|
||||
#endif
|
||||
|
||||
|
||||
/**
|
||||
* g_mime_utils_header_decode_date:
|
||||
* @str: input date string
|
||||
* @tz_offset: timezone offset
|
||||
*
|
||||
* Decodes the rfc822 date string and saves the GMT offset into
|
||||
* @tz_offset if non-NULL.
|
||||
*
|
||||
* Returns: the time_t representation of the date string specified by
|
||||
* @str or (time_t) %0 on error. If @tz_offset is non-NULL, the value
|
||||
* of the timezone offset will be stored.
|
||||
**/
|
||||
time_t
|
||||
g_mime_utils_header_decode_date (const char *str, int *tz_offset)
|
||||
notmuch_parse_date (const char *str, int *tz_offset)
|
||||
{
|
||||
date_token *token, *tokens;
|
||||
time_t date;
|
||||
|
|
Loading…
Reference in a new issue