Mercurial > foo_out_sdl
view foosdk/sdk/pfc/bsearch.cpp @ 1:20d02a178406 default tip
*: check in everything else
yay
| author | Paper <paper@tflc.us> |
|---|---|
| date | Mon, 05 Jan 2026 02:15:46 -0500 |
| parents | |
| children |
line wrap: on
line source
#include "pfc-lite.h" #include "bsearch.h" #include "bsearch_inline.h" //deprecated /* class NOVTABLE bsearch_callback { public: virtual int test(t_size p_index) const = 0; }; */ namespace pfc { bool bsearch(t_size p_count, bsearch_callback const & p_callback,t_size & p_result) { return bsearch_inline_t(p_count,p_callback,p_result); } }
