=================================================================== RCS file: /cvs/mandoc/mdoc.h,v retrieving revision 1.48 retrieving revision 1.53 diff -u -p -r1.48 -r1.53 --- mandoc/mdoc.h 2009/03/16 22:19:19 1.48 +++ mandoc/mdoc.h 2009/03/23 14:22:11 1.53 @@ -1,6 +1,6 @@ -/* $Id: mdoc.h,v 1.48 2009/03/16 22:19:19 kristaps Exp $ */ +/* $Id: mdoc.h,v 1.53 2009/03/23 14:22:11 kristaps Exp $ */ /* - * Copyright (c) 2008 Kristaps Dzonsons + * Copyright (c) 2008, 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 @@ -148,7 +148,9 @@ #define MDOC__C 114 #define MDOC_Es 115 #define MDOC_En 116 -#define MDOC_MAX 117 +#define MDOC_Dx 117 +#define MDOC__Q 118 +#define MDOC_MAX 119 /* What follows is a list of ALL possible macro arguments. */ @@ -299,8 +301,8 @@ void mdoc_free(struct mdoc *); /* Allocate a new parser instance. */ struct mdoc *mdoc_alloc(void *, int, const struct mdoc_cb *); -/* Set parse options. */ -void mdoc_setflags(struct mdoc *, int); +/* Gets system ready for another parse. */ +void mdoc_reset(struct mdoc *); /* Parse a single line in a stream (boolean retval). */ int mdoc_parseln(struct mdoc *, int, char *buf); @@ -319,8 +321,6 @@ int mdoc_endparse(struct mdoc *); const char *mdoc_a2att(const char *); const char *mdoc_a2lib(const char *); const char *mdoc_a2st(const char *); - -int mdoc_isdelim(const char *); __END_DECLS