PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ lwdebug()

void lwdebug ( int  level,
const char *  fmt,
  ... 
)

Definition at line 203 of file lwutil.c.

204{
205 va_list ap;
206
207 va_start(ap, fmt);
208
209 /* Call the supplied function */
210 (*lwdebug_var)(level, fmt, ap);
211
212 va_end(ap);
213}