MCPcopy Index your code
hub / github.com/MapServer/MapServer / msTokenizeMap

Function msTokenizeMap

mapfile.c:6131–6140  ·  view source on GitHub ↗

** Wraps tokenizeMapInternal */

Source from the content-addressed store, hash-verified

6129** Wraps tokenizeMapInternal
6130*/
6131char **msTokenizeMap(char *filename, int *numtokens)
6132{
6133 char **tokens;
6134
6135 msAcquireLock( TLOCK_PARSER );
6136 tokens = tokenizeMapInternal( filename, numtokens );
6137 msReleaseLock( TLOCK_PARSER );
6138
6139 return tokens;
6140}
6141
6142void msCloseConnections(mapObj *map) {
6143 int i;

Callers 2

ifFunction · 0.85
php_mapscript.cFile · 0.85

Calls 3

msAcquireLockFunction · 0.85
tokenizeMapInternalFunction · 0.85
msReleaseLockFunction · 0.85

Tested by

no test coverage detected