=================================================================== RCS file: /cvs/mandoc/Attic/mdoc_strings.c,v retrieving revision 1.10 retrieving revision 1.14 diff -u -p -r1.10 -r1.14 --- mandoc/Attic/mdoc_strings.c 2009/08/20 13:32:09 1.10 +++ mandoc/Attic/mdoc_strings.c 2010/01/01 17:14:30 1.14 @@ -1,4 +1,4 @@ -/* $Id: mdoc_strings.c,v 1.10 2009/08/20 13:32:09 kristaps Exp $ */ +/* $Id: mdoc_strings.c,v 1.14 2010/01/01 17:14:30 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -14,12 +14,17 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include #include #include +#include #include "libmdoc.h" @@ -55,11 +60,7 @@ static const struct mdoc_secname secnames[SECNAME_MAX] { "SECURITY CONSIDERATIONS", SEC_SECURITY } }; -#ifdef __linux__ -extern char *strptime(const char *, const char *, struct tm *); -#endif - int mdoc_iscdelim(char p) { @@ -121,28 +122,6 @@ mdoc_atosec(const char *p) return(secnames[i].sec); return(SEC_CUSTOM); -} - - -time_t -mdoc_atotime(const char *p) -{ - struct tm tm; - char *pp; - - bzero(&tm, sizeof(struct tm)); - - if (0 == strcmp(p, "$" "Mdocdate$")) - return(time(NULL)); - if ((pp = strptime(p, "$" "Mdocdate: %b %d %Y $", &tm)) && 0 == *pp) - return(mktime(&tm)); - /* XXX - this matches "June 1999", which is wrong. */ - if ((pp = strptime(p, "%b %d %Y", &tm)) && 0 == *pp) - return(mktime(&tm)); - if ((pp = strptime(p, "%b %d, %Y", &tm)) && 0 == *pp) - return(mktime(&tm)); - - return(0); }