/usr/include/gap/vec8bit.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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | /****************************************************************************
**
*W vec8bit.h GAP source Steve Linton
**
**
*Y Copyright (C) 1997, St Andrews
*/
#ifndef GAP_VEC8BIT_H
#define GAP_VEC8BIT_H
/****************************************************************************
**
*F RewriteGF2Vec( <vec>, <q> ) . . .
** convert a GF(2) vector into a GF(2^k) vector in place
**
*/
extern void RewriteGF2Vec( Obj vec, UInt q);
/****************************************************************************
**
*F IS_VEC8BIT_REP( <obj> ) . . . . . . check that <obj> is in 8bit GFQ vector rep
*/
extern Obj IsVec8bitRep;
#define IS_VEC8BIT_REP(obj) \
(TNUM_OBJ(obj)==T_DATOBJ && True == DoFilter(IsVec8bitRep,obj))
/****************************************************************************
**
*F PlainVec8Bit( <list> ) . . . convert an 8bit vector into an ordinary list
**
** 'PlainVec8Bit' converts the vector <list> to a plain list.
*/
extern void PlainVec8Bit ( Obj list );
/****************************************************************************
**
*F FuncASS_VEC8BIT( <self>, <list>, <pos>, <elm> ) set an elm of a GF2 vector
**
*/
extern Obj FuncASS_VEC8BIT (
Obj self,
Obj list,
Obj pos,
Obj elm );
/****************************************************************************
**
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F InitInfoVec8bit() . . . . . . . . . . . . . . . . table of init functions
*/
extern StructInitInfo * InitInfoVec8bit ( void );
#endif // GAP_VEC8BIT_H
/****************************************************************************
**
*E vecgf2.h . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
*/
|