You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
400 B
Groff
16 lines
400 B
Groff
.TH scan_httpdate 3
|
|
.SH NAME
|
|
scan_httpdate \- parse a HTTP date
|
|
.SH SYNTAX
|
|
.B #include <scan.h>
|
|
|
|
size_t \fBscan_httpdate\fP(const char *\fIsrc\fR,time_t *\fIdest\fR);
|
|
.SH DESCRIPTION
|
|
scan_httpdate parses a date as defined in the HTTP standard into a
|
|
time_t. It returns the number of bytes read from \fIsrc\fR (0 for parse
|
|
error).
|
|
|
|
The only supported time zone is GMT.
|
|
.SH "SEE ALSO"
|
|
fmt_httpdate(3)
|