1 /****************************************************************************
2 **
3 **  This file is part of GAP, a system for computational discrete algebra.
4 **
5 **  Copyright of GAP belongs to its developers, whose names are too numerous
6 **  to list here. Please refer to the COPYRIGHT file for details.
7 **
8 **  SPDX-License-Identifier: GPL-2.0-or-later
9 **
10 **  This file declares a fast access  function for structure constants tables
11 **  and the multiplication of two elements using a structure constants table.
12 */
13 
14 #ifndef GAP_SCTABLE_H
15 #define GAP_SCTABLE_H
16 
17 #include "system.h"
18 
19 /****************************************************************************
20 **
21 *F * * * * * * * * * * * * * initialize module * * * * * * * * * * * * * * *
22 */
23 
24 /****************************************************************************
25 **
26 *F  InitInfoSCTable() . . . . . . . . . . . . . . . . table of init functions
27 */
28 StructInitInfo * InitInfoSCTable ( void );
29 
30 
31 #endif // GAP_SCTABLE_H
32