1*61d06d6bSBaptiste Daroussin /* $Id: lib.c,v 1.14 2017/06/24 14:38:32 schwarze Exp $ */ 2*61d06d6bSBaptiste Daroussin /* 3*61d06d6bSBaptiste Daroussin * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv> 4*61d06d6bSBaptiste Daroussin * 5*61d06d6bSBaptiste Daroussin * Permission to use, copy, modify, and distribute this software for any 6*61d06d6bSBaptiste Daroussin * purpose with or without fee is hereby granted, provided that the above 7*61d06d6bSBaptiste Daroussin * copyright notice and this permission notice appear in all copies. 8*61d06d6bSBaptiste Daroussin * 9*61d06d6bSBaptiste Daroussin * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 10*61d06d6bSBaptiste Daroussin * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 11*61d06d6bSBaptiste Daroussin * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 12*61d06d6bSBaptiste Daroussin * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 13*61d06d6bSBaptiste Daroussin * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 14*61d06d6bSBaptiste Daroussin * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 15*61d06d6bSBaptiste Daroussin * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 16*61d06d6bSBaptiste Daroussin */ 17*61d06d6bSBaptiste Daroussin #include "config.h" 18*61d06d6bSBaptiste Daroussin 19*61d06d6bSBaptiste Daroussin #include <sys/types.h> 20*61d06d6bSBaptiste Daroussin 21*61d06d6bSBaptiste Daroussin #include <string.h> 22*61d06d6bSBaptiste Daroussin 23*61d06d6bSBaptiste Daroussin #include "mandoc.h" 24*61d06d6bSBaptiste Daroussin #include "roff.h" 25*61d06d6bSBaptiste Daroussin #include "mdoc.h" 26*61d06d6bSBaptiste Daroussin #include "libmdoc.h" 27*61d06d6bSBaptiste Daroussin 28*61d06d6bSBaptiste Daroussin #define LINE(x, y) \ 29*61d06d6bSBaptiste Daroussin if (0 == strcmp(p, x)) return(y); 30*61d06d6bSBaptiste Daroussin 31*61d06d6bSBaptiste Daroussin const char * 32*61d06d6bSBaptiste Daroussin mdoc_a2lib(const char *p) 33*61d06d6bSBaptiste Daroussin { 34*61d06d6bSBaptiste Daroussin 35*61d06d6bSBaptiste Daroussin #include "lib.in" 36*61d06d6bSBaptiste Daroussin 37*61d06d6bSBaptiste Daroussin return NULL; 38*61d06d6bSBaptiste Daroussin } 39