1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#############################################################################
##
## This file is part of GAP, a system for computational discrete algebra.
## This file's authors include Frank Lübeck.
##
## Copyright of GAP belongs to its developers, whose names are too numerous
## to list here. Please refer to the COPYRIGHT file for details.
##
## SPDX-License-Identifier: GPL-2.0-or-later
##
## The files helpbase.g{d,i} contain the interface between GAP's online help
## and the actual help books.
##
DeclareGlobalFunction("StringStreamInputTextFile");
DeclareGlobalFunction("MATCH_BEGIN");
DeclareGlobalFunction("MATCH_BEGIN_COUNT");
DeclareGlobalFunction("FILLED_LINE");
DeclareGlobalFunction("SIMPLE_STRING");
DeclareGlobalName("HELP_KNOWN_BOOKS");
DeclareGlobalFunction("HELP_ADD_BOOK");
DeclareGlobalFunction("HELP_REMOVE_BOOK");
DeclareGlobalName("HELP_BOOKS_INFO");
DeclareGlobalFunction("HELP_BOOK_INFO");
DeclareGlobalFunction("HELP_SHOW_BOOKS");
DeclareGlobalFunction("HELP_SHOW_CHAPTERS");
DeclareGlobalFunction("HELP_SHOW_SECTIONS");
DeclareGlobalFunction("HELP_PRINT_MATCH");
DeclareGlobalFunction("HELP_SHOW_PREV_CHAPTER");
DeclareGlobalFunction("HELP_SHOW_NEXT_CHAPTER");
DeclareGlobalFunction("HELP_SHOW_PREV");
DeclareGlobalFunction("HELP_SHOW_NEXT");
DeclareGlobalFunction("HELP_SHOW_WELCOME");
DeclareGlobalFunction("HELP_GET_MATCHES");
DeclareGlobalFunction("HELP_SHOW_MATCHES");
DeclareGlobalFunction("HELP_SHOW_FROM_LAST_TOPICS");
DeclareGlobalFunction("HELP_LAB_FILE");
DeclareGlobalName("HELP_LAST");
DeclareGlobalFunction("HELP");
|