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

Function decimalSumValue

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

Source from the content-addressed store, hash-verified

5019 decimal_free(pArg);
5020}
5021static void decimalSumValue(sqlite3_context *context){
5022 Decimal *p = sqlite3_aggregate_context(context, 0);
5023 if( p==0 ) return;
5024 decimal_result(context, p);
5025}
5026static void decimalSumFinalize(sqlite3_context *context){
5027 Decimal *p = sqlite3_aggregate_context(context, 0);
5028 if( p==0 ) return;

Callers

nothing calls this directly

Calls 1

decimal_resultFunction · 0.85

Tested by

no test coverage detected