ref: fc08d0a6d63a5453a8928bd5f77e30cf73f13073 dir: /libentcode/bitrenc.c/
#include "bitrenc.h" void ec_bitree_update(unsigned *_this,int _sz,int _sym,int _val){ do{ _this[_sym]+=_val; _sym+=_sym+1&-(_sym+1); } while(_sym<_sz); }