[BACK]Return to mdoc_html.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mdoc_html.c between version 1.51 and 1.52

version 1.51, 2010/01/01 13:35:30 version 1.52, 2010/01/01 17:14:29
Line 14 
Line 14 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   #ifdef HAVE_CONFIG_H
   #include "config.h"
   #endif
   
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/param.h>  
   
 #include <assert.h>  #include <assert.h>
 #include <ctype.h>  #include <ctype.h>
Line 36 
Line 39 
                           const struct mdoc_node *n, \                            const struct mdoc_node *n, \
                           struct html *h                            struct html *h
   
   #ifndef MIN
   #define MIN(a,b)        ((/*CONSTCOND*/(a)<(b))?(a):(b))
   #endif
   
 struct  htmlmdoc {  struct  htmlmdoc {
         int             (*pre)(MDOC_ARGS);          int             (*pre)(MDOC_ARGS);
         void            (*post)(MDOC_ARGS);          void            (*post)(MDOC_ARGS);
Line 125  static int    mdoc_va_pre(MDOC_ARGS);
Line 132  static int    mdoc_va_pre(MDOC_ARGS);
 static  int               mdoc_vt_pre(MDOC_ARGS);  static  int               mdoc_vt_pre(MDOC_ARGS);
 static  int               mdoc_xr_pre(MDOC_ARGS);  static  int               mdoc_xr_pre(MDOC_ARGS);
 static  int               mdoc_xx_pre(MDOC_ARGS);  static  int               mdoc_xx_pre(MDOC_ARGS);
   
 #ifdef __linux__  
 extern  size_t            strlcpy(char *, const char *, size_t);  
 extern  size_t            strlcat(char *, const char *, size_t);  
 #endif  
   
 static  const struct htmlmdoc mdocs[MDOC_MAX] = {  static  const struct htmlmdoc mdocs[MDOC_MAX] = {
         {mdoc_ap_pre, NULL}, /* Ap */          {mdoc_ap_pre, NULL}, /* Ap */

Legend:
Removed from v.1.51  
changed lines
  Added in v.1.52

CVSweb