MCPcopy Create free account
hub / github.com/OpenPrinting/cups / _cupsRasterErrorString

Function _cupsRasterErrorString

cups/raster-error.c:118–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116 */
117
118const char * /* O - Last error */
119_cupsRasterErrorString(void)
120{
121 _cups_globals_t *cg = _cupsGlobals();
122 /* Thread globals */
123 _cups_raster_error_t *buf = &cg->raster_error;
124 /* Error buffer */
125
126
127 if (buf->current == buf->start)
128 return (NULL);
129 else
130 return (buf->start);
131}

Callers 1

cupsRasterErrorStringFunction · 0.85

Calls 1

_cupsGlobalsFunction · 0.85

Tested by

no test coverage detected