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

Function msIntToString

mapstring.c:380–386  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

378}
379
380char *msIntToString(int value) {
381 size_t bufferSize = 256;
382 char *buffer = (char*)msSmallMalloc(bufferSize);
383
384 snprintf(buffer, bufferSize, "%i", value);
385 return(buffer);
386}
387
388void msStringToUpper(char *string) {
389 int i;

Callers 6

InitShapeAttributesFunction · 0.85
UpdateShapeAttributesFunction · 0.85
msGML3BoundedByFunction · 0.85
msGML3PointFunction · 0.85
msSOSAddPropertyNodeFunction · 0.85

Calls 1

msSmallMallocFunction · 0.85

Tested by

no test coverage detected