xref: /netbsd-src/external/bsd/mdocml/dist/msec.c (revision 544c191c349c1704c9d5e679d12ec15cff579663)
1*544c191cSchristos /*	Id: msec.c,v 1.16 2018/12/14 01:18:26 schwarze Exp  */
24154958bSjoerg /*
30a84adc5Sjoerg  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv>
44154958bSjoerg  *
54154958bSjoerg  * Permission to use, copy, modify, and distribute this software for any
64154958bSjoerg  * purpose with or without fee is hereby granted, provided that the above
74154958bSjoerg  * copyright notice and this permission notice appear in all copies.
84154958bSjoerg  *
94154958bSjoerg  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
104154958bSjoerg  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
114154958bSjoerg  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
124154958bSjoerg  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
134154958bSjoerg  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
144154958bSjoerg  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
154154958bSjoerg  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
164154958bSjoerg  */
17d5e63c8dSjoerg #include "config.h"
18d5e63c8dSjoerg 
19fec65c98Schristos #include <sys/types.h>
20fec65c98Schristos 
21*544c191cSchristos #include <stdio.h>
224154958bSjoerg #include <string.h>
234154958bSjoerg 
240a84adc5Sjoerg #include "mandoc.h"
2594561435Sjoerg #include "libmandoc.h"
264154958bSjoerg 
274154958bSjoerg #define LINE(x, y) \
284154958bSjoerg 	if (0 == strcmp(p, x)) return(y);
294154958bSjoerg 
304154958bSjoerg const char *
mandoc_a2msec(const char * p)3194561435Sjoerg mandoc_a2msec(const char *p)
324154958bSjoerg {
334154958bSjoerg 
344154958bSjoerg #include "msec.in"
354154958bSjoerg 
369ff1f2acSchristos 	return NULL;
374154958bSjoerg }
38