/usr/include/gap/string.h is in gap-dev 4r7p9-1.
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | /****************************************************************************
**
*W string.h GAP source Martin Schönert
**
**
*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 the functions which mainly deal with strings.
**
** A *string* is a list that has no holes, and whose elements are all
** characters. For the full definition of strings see chapter "Strings" in
** the {\GAP} manual. Read also "More about Strings" about the string flag
** and the compact representation of strings.
**
** Strings in compact representation can be accessed and handled through
** the macros 'NEW_STRING', `CHARS_STRING' (and 'CSTR_STRING'),
** 'GET_LEN_STRING', `SET_LEN_STRING', `GROW_STRING', 'GET_ELM_STRING'
** and `SET_ELM_STRING'.
**
** This package also contains the list function for ranges, which are
** installed in the appropriate tables by 'InitString'.
*/
#ifndef GAP_STRING_H
#define GAP_STRING_H
#include <string.h> /* for memcpy */
/****************************************************************************
**
*F * * * * * * * * * * * * * * character functions * * * * * * * * * * * * *
*/
/****************************************************************************
**
*V ObjsChar[<chr>] . . . . . . . . . . . . . . . . table of character values
**
** 'ObjsChar' contains all the character values. That way we do not need to
** allocate new bags for new characters.
*/
extern Obj ObjsChar [256];
/****************************************************************************
**
*F * * * * * * * * * * * * * * * string functions * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F SIZEBAG_STRINGLEN( <len> ) . . . . size of Bag for string of length <len>
**
*/
#define SIZEBAG_STRINGLEN(len) ((len) + 1 + sizeof(UInt))
/****************************************************************************
**
*F CSTR_STRING( <list> ) . . . . . . . . . . . . . . . C string of a string
*F CHARS_STRING( <list> ) . . . . . . . . . . . . . . same pointer
**
** 'CSTR_STRING' returns the (address of the) C character string of the
** string <list>. Note that the string as C string is truncated before the
** first null character. Try to avoid this and use CHARS_STRING.
**
** Note that 'CSTR_STRING' is a macro, so do not call it with arguments that
** have side effects.
*/
#define CSTR_STRING(list) ((Char*)ADDR_OBJ(list) + sizeof(UInt))
#define CHARS_STRING(list) ((UChar*)ADDR_OBJ(list) + sizeof(UInt))
/****************************************************************************
**
*F GET_LEN_STRING( <list> ) . . . . . . . . . . . . . . length of a string
**
** 'GET_LEN_STRING' returns the length of the string <list>, as a C integer.
**
** Note that 'GET_LEN_STRING' is a macro, so do not call it with arguments
** that have side effects.
*/
#define GET_LEN_STRING(list) (*((UInt*)ADDR_OBJ(list)))
/****************************************************************************
**
*F SET_LEN_STRING( <list>, <len> ) . . . . . . . . . set length of a string
**
** 'SET_LEN_STRING' sets length of the string <list> to C integer <len>.
**
** Note that 'SET_LEN_STRING' is a macro, so do not call it with arguments
** that have side effects.
*/
#define SET_LEN_STRING(list,len) (*((UInt*)ADDR_OBJ(list)) = (UInt)(len))
/****************************************************************************
**
*F NEW_STRING( <len> ) . . . . . . . . . . . . . . . . . . make a new string
**
** 'NEW_STRING' returns a new string with room for <len> characters. It also
** sets its length to len.
**
*/
extern Obj NEW_STRING(Int len);
/****************************************************************************
**
*F GROW_STRING(<list>, <len>) . . . . make sure a string is large enough
**
** 'GROW_STRING' grows the string <list> if necessary to ensure that it
** has room for at least <len> elements.
**
** Note that 'GROW_STRING' is a macro, so do not call it with arguments that
** have side effects.
*/
#define GROW_STRING(list,len) ( ((len) + sizeof(UInt) < SIZE_OBJ(list)) ? \
0L : GrowString(list,len) )
extern Int GrowString (
Obj list,
UInt need );
/****************************************************************************
**
*F SHRINK_STRING(<list>) . . . . . . . . . shrink a string to minimal size
**
** 'SHRINK_STRING' gives back not needed memory allocated by string.
**
** Note that 'SHRINK_STRING' is a macro, so do not call it with arguments that
** have side effects.
*/
#define SHRINK_STRING(list) ResizeBag((list),\
(SIZEBAG_STRINGLEN(GET_LEN_STRING((list)))));
/****************************************************************************
**
*F GET_ELM_STRING( <list>, <pos> ) . . . . . . select an element of a string
**
** 'GET_ELM_STRING' returns the <pos>-th element of the string <list>.
** <pos> must be a positive integer less than or equal to the length of
** <list>.
**
** Note that 'GET_ELM_STRING' is a macro, so do not call it with arguments
** that have side effects.
*/
#define GET_ELM_STRING(list,pos) (ObjsChar[ \
(((UInt1*)ADDR_OBJ(list))[(pos) + sizeof(UInt) - 1])])
/****************************************************************************
**
*F SET_ELM_STRING( <list>, <pos>, <val> ) . . . . set a character of a string
**
** 'SET_ELM_STRING' sets the <pos>-th character of the string <list>.
** <val> must be a character and <list> stay a string after the assignment.
**
** Note that 'SET_ELM_STRING' is a macro, so do not call it with arguments
** that have side effects.
*/
#define SET_ELM_STRING(list,pos,val) (((UInt1*)ADDR_OBJ(list))\
[(pos) + sizeof(UInt) - 1] = *((UInt1*)ADDR_OBJ(val)))
/****************************************************************************
**
*F COPY_CHARS( <str>, <charpnt>, <n> ) . . . copies <n> chars, starting
** from character pointer <charpnt>, to beginning of string
**
** This is a macro. It assumes that the data area in <str> is large
** enough. It does not add a terminating null character and not change the
** length of the string.
**
*/
#define COPY_CHARS(str,pnt,n) (memcpy(CHARS_STRING(str), pnt, n));
/****************************************************************************
**
*F PrintString( <list> ) . . . . . . . . . . . . . . . . . . print a string
**
** 'PrintString' prints the string with the handle <list>.
**
** No linebreaks are allowed, if one must be inserted anyhow, it must be
** escaped by a backslash '\', which is done in 'Pr'. */
extern void PrintString (
Obj list );
/****************************************************************************
**
*F PrintString1( <list> ) . . . . . . . . . . . print a string for 'Print'
**
** 'PrintString1' prints the string constant in the format used by the
** 'Print' and 'PrintTo' function.
*/
extern void PrintString1 (
Obj list );
/****************************************************************************
**
*F IS_STRING( <obj> ) . . . . . . . . . . . . test if an object is a string
**
** 'IS_STRING' returns 1 if the object <obj> is a string and 0 otherwise.
** It does not change the representation of <obj>.
**
** Note that 'IS_STRING' is a macro, so do not call it with arguments that
** have side effects.
*/
#define IS_STRING(obj) ((*IsStringFuncs[ TNUM_OBJ( obj ) ])( obj ))
extern Int (*IsStringFuncs [LAST_REAL_TNUM+1]) ( Obj obj );
/****************************************************************************
**
*F IS_STRING_REP( <list> ) . . . . . . . . check if <list> is in string rep
*/
#define IS_STRING_REP(list) \
(T_STRING <= TNUM_OBJ(list) && TNUM_OBJ(list) <= T_STRING_SSORT+IMMUTABLE)
/****************************************************************************
**
*F IsString( <obj> ) . . . . . . . . . . . . . test if an object is a string
**
** 'IsString' returns 1 if the object <obj> is a string and 0 otherwise. It
** does not change the representation of <obj>.
*/
extern Int IsString (
Obj obj );
/****************************************************************************
**
*F CopyToStringRep( <string> ) . . copy a string to the string representation
**
** 'CopyToStringRep' copies the string <string> to a new string in string
** representation.
*/
extern Obj CopyToStringRep(
Obj string );
/****************************************************************************
**
*F ConvString( <string> ) . . convert a string to the string representation
**
** 'ConvString' converts the string <list> to the string representation.
*/
extern void ConvString (
Obj string );
/****************************************************************************
**
*F IsStringConv( <obj> ) . . . . . test if an object is a string and convert
**
** 'IsStringConv' returns 1 if the object <obj> is a string, and 0
** otherwise. If <obj> is a string it changes its representation to the
** string representation.
*/
extern Int IsStringConv (
Obj obj );
/****************************************************************************
**
*F C_NEW_STRING( <string>, <len>, <cstring> ) . . . . . . create GAP string
*/
#define C_NEW_STRING(string,len,cstr) \
do { \
size_t tmp_len = (len); \
string = NEW_STRING( tmp_len ); \
memcpy( CHARS_STRING(string), (cstr), tmp_len ); \
} while ( 0 );
/****************************************************************************
**
*F C_NEW_STRING_DYN( <string>, <cstring> ) . . . . . . . . create GAP string
**
** The cstring is assumed to be allocated on the heap, hence its length
** is dynamic and must be computed during runtime using strlen.
*/
#define C_NEW_STRING_DYN(string,cstr) \
C_NEW_STRING(string, strlen(cstr), cstr)
/****************************************************************************
**
*F C_NEW_STRING_CONST( <string>, <cstring> ) . . . . . . . . create GAP string
**
** The cstring is assumed to be a literal constant (like this: "string").
** Hence its length is constant and can be computed during compilation.
*/
#define C_NEW_STRING_CONST(string,cstr) \
C_NEW_STRING(string, sizeof(cstr)-1, cstr)
/****************************************************************************
**
*F SINT_CHAR(a)
**
** 'SINT_CHAR' converts the character a (a UInt1) into a signed (C) integer.
*/
#define SINT_CHAR(a) (((UInt1)a)<128 ? (Int)a : (Int)a-256)
/****************************************************************************
**
*F CHAR_SINT(n)
**
** 'CHAR_SINT' converts the signed (C) integer n into an (UInt1) character.
*/
#define CHAR_SINT(n) (UInt1)(n>=0 ? n : n+256)
/****************************************************************************
**
*F * * * * * * * * * * * * * initialize package * * * * * * * * * * * * * * *
*/
/****************************************************************************
**
*F InitInfoString() . . . . . . . . . . . . . . . . table of init functions
*/
StructInitInfo * InitInfoString ( void );
#endif // GAP_STRING_H
/****************************************************************************
**
*E string.h . . . . . . . . . . . . . . . . . . . . . . . . . . . ends here
*/
|