------------------------------------------------------------------ */ decContextZeroStatus -- clear all status bits */ / context is the context structure to be updated */ returns context */ / No error is possible. */ ------------------------------------------------
| 431 | /* No error is possible. */ |
| 432 | /* ------------------------------------------------------------------ */ |
| 433 | decContext *decContextZeroStatus(decContext *context) { |
| 434 | context->status=0; |
| 435 | return context; |
| 436 | } // decContextZeroStatus |
| 437 |