MCPcopy Create free account
hub / github.com/audacity/audacity / decimal_free

Function decimal_free

lib-src/sqlite/shell.c:4557–4562  ·  view source on GitHub ↗

** Destroy a Decimal object */

Source from the content-addressed store, hash-verified

4555** Destroy a Decimal object
4556*/
4557static void decimal_free(Decimal *p){
4558 if( p ){
4559 decimal_clear(p);
4560 sqlite3_free(p);
4561 }
4562}
4563
4564/*
4565** Allocate a new Decimal object. Initialize it to the number given

Callers 8

decimalFuncFunction · 0.85
decimalCmpFuncFunction · 0.85
decimalCollFuncFunction · 0.85
decimalAddFuncFunction · 0.85
decimalSubFuncFunction · 0.85
decimalSumStepFunction · 0.85
decimalSumInverseFunction · 0.85
decimalMulFuncFunction · 0.85

Calls 1

decimal_clearFunction · 0.85

Tested by

no test coverage detected