181634Sbrian/*	$Id: att.c,v 1.9 2011/03/22 14:33:05 kristaps Exp $ */
281634Sbrian/*
381634Sbrian * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv>
481634Sbrian *
581634Sbrian * Permission to use, copy, modify, and distribute this software for any
681634Sbrian * purpose with or without fee is hereby granted, provided that the above
781634Sbrian * copyright notice and this permission notice appear in all copies.
881634Sbrian *
981634Sbrian * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1081634Sbrian * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1181634Sbrian * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1281634Sbrian * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1381634Sbrian * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1481634Sbrian * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1581634Sbrian * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1681634Sbrian */
1781634Sbrian#ifdef HAVE_CONFIG_H
1881634Sbrian#include "config.h"
1981634Sbrian#endif
2081634Sbrian
2181634Sbrian#include <stdlib.h>
2281634Sbrian#include <string.h>
2381634Sbrian#include <time.h>
2481634Sbrian
2581634Sbrian#include "mdoc.h"
2681634Sbrian#include "mandoc.h"
2781634Sbrian#include "libmdoc.h"
2881634Sbrian
2981634Sbrian#define LINE(x, y) \
3081634Sbrian	if (0 == strcmp(p, x)) return(y);
3181634Sbrian
3281634Sbrianconst char *
3381634Sbrianmdoc_a2att(const char *p)
3481634Sbrian{
35102558Sbrian
36102558Sbrian#include "att.in"
3781634Sbrian
3881634Sbrian	return(NULL);
3981634Sbrian}
4081634Sbrian