Searched defs:dtcount (Results 1 - 1 of 1) sorted by relevance

/ast/src/cmd/mailx/port/
H A Ddtsize.c76 static int dtcount(reg Dtlink_t* here) function
78 static int dtcount(here)
81 { return !here ? 0 : dtcount(here->left) + dtcount(here->right) + 1;
98 dt->data->size = dtcount(dt->data->here);

Completed in 10 milliseconds