* free a log writer */
| 483 | * free a log writer |
| 484 | */ |
| 485 | XLOG_API void xlog_free_writer(xlog_writer *wr) |
| 486 | { |
| 487 | if (wr != NULL){ |
| 488 | free(wr); |
| 489 | } |
| 490 | } |
| 491 | |
| 492 | /** |
| 493 | * set the main prefix string, return 0 if success. |
no outgoing calls
no test coverage detected