/usr/include/gap/intfuncs.h is in gap-dev 4r6p5-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 41 42 43 44 45 46 47 48 49 50 51 52 53 | /****************************************************************************
**
*W intfuncs.h GAP source Martin Schönert
** & Alice Niemeyer
** & Werner Nickel
**
**
*Y Copyright (C) 1996, Lehrstuhl D für Mathematik, RWTH Aachen, Germany
*Y (C) 1998 School Math and Comp. Sci., University of St Andrews, Scotland
*Y Copyright (C) 2002 The GAP Group
**
** This file declares some representation nonspecific integer functions
*/
#ifndef GAP_INTFUNCS_H
#define GAP_INTFUNCS_H
/* link between Mersenne Twister randim numbers and
representation specific large integer codes */
extern UInt4 nextrandMT_int32(UInt4* mt);
/* High quality and speed hash functions -- not currently used
elsewhere in the kernel but might be a good idea */
extern void MurmurHash3_x86_32 ( const void * key, int len,
UInt4 seed, void * out );
extern void MurmurHash3_x64_128 ( const void * key, const int len,
const UInt4 seed, void * out );
/****************************************************************************
**
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
*/
/****************************************************************************
** \
\
*F InitInfoInt() . . . . . . . . . . . . . . . . . . table of init functions
*/
StructInitInfo * InitInfoIntFuncs ( void );
#endif // GAP_INTFUNCS_H
/****************************************************************************
**
*E integer.c . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
*/
|