| 186 | } |
| 187 | |
| 188 | TESS_API BOOL TESS_CALL TessBaseAPISetDebugVariable(TessBaseAPI* handle, const char* name, const char* value) |
| 189 | { |
| 190 | return handle->SetVariable(name, value) ? TRUE : FALSE; |
| 191 | } |
| 192 | |
| 193 | TESS_API BOOL TESS_CALL TessBaseAPIGetIntVariable(const TessBaseAPI* handle, const char* name, int* value) |
| 194 | { |
nothing calls this directly
no test coverage detected