=================================================================== RCS file: /cvs/mandoc/man.h,v retrieving revision 1.35 retrieving revision 1.39 diff -u -p -r1.35 -r1.39 --- mandoc/man.h 2010/05/17 22:11:42 1.35 +++ mandoc/man.h 2010/06/27 15:52:41 1.39 @@ -1,6 +1,6 @@ -/* $Id: man.h,v 1.35 2010/05/17 22:11:42 kristaps Exp $ */ +/* $Id: man.h,v 1.39 2010/06/27 15:52:41 kristaps Exp $ */ /* - * Copyright (c) 2009 Kristaps Dzonsons + * Copyright (c) 2009 Kristaps Dzonsons * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -71,6 +71,7 @@ enum man_type { struct man_meta { char *msec; time_t date; + char *rawdate; char *vol; char *title; char *source; @@ -105,7 +106,7 @@ __BEGIN_DECLS struct man; void man_free(struct man *); -struct man *man_alloc(void *, int, mandocmsg); +struct man *man_alloc(const struct regset *, void *, int, mandocmsg); void man_reset(struct man *); int man_parseln(struct man *, int, char *, int); int man_endparse(struct man *);