142660Smarkm/* man.h: Defines and external function declarations for man.c.
2146515Sru   $Id: man.h,v 1.3 2004/04/11 17:56:46 karl Exp $
321495Sjmacd
442660Smarkm   This file is part of GNU Info, a program for reading online documentation
521495Sjmacd   stored in Info format.
621495Sjmacd
7146515Sru   Copyright (C) 1993, 1997, 2004 Free Software Foundation, Inc.
821495Sjmacd
921495Sjmacd   This program is free software; you can redistribute it and/or modify
1021495Sjmacd   it under the terms of the GNU General Public License as published by
1121495Sjmacd   the Free Software Foundation; either version 2, or (at your option)
1221495Sjmacd   any later version.
1321495Sjmacd
1421495Sjmacd   This program is distributed in the hope that it will be useful,
1521495Sjmacd   but WITHOUT ANY WARRANTY; without even the implied warranty of
1621495Sjmacd   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1721495Sjmacd   GNU General Public License for more details.
1821495Sjmacd
1921495Sjmacd   You should have received a copy of the GNU General Public License
2021495Sjmacd   along with this program; if not, write to the Free Software
2121495Sjmacd   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
2221495Sjmacd
2321495Sjmacd   Author: Brian J. Fox (bfox@ai.mit.edu) Sat May  6 16:19:13 1995. */
2421495Sjmacd
2542660Smarkm#ifndef INFO_MAN_H
2642660Smarkm#define INFO_MAN_H
2721495Sjmacd
2821495Sjmacd#define MANPAGE_FILE_BUFFER_NAME "*manpages*"
2921495Sjmacd
30146515Sruextern NODE *make_manpage_node (char *pagename);
31146515Sruextern NODE *get_manpage_node (FILE_BUFFER *file_buffer,
32146515Sru    char *pagename);
33146515Sruextern FILE_BUFFER *create_manpage_file_buffer (void);
34146515Sruextern long locate_manpage_xref (NODE *node, long int start, int dir);
35146515Sruextern REFERENCE **xrefs_of_manpage (NODE *node);
36146515Sruextern REFERENCE **manpage_xrefs_in_binding (NODE *node,
37146515Sru    SEARCH_BINDING *binding);
3821495Sjmacd
3942660Smarkm#endif /* INFO_MAN_H */
40