Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:16

0001 // name=sdebug_test ; gcc $name.cc -std=c++11 -lstdc++ -I.. -o /tmp/$name && /tmp/$name
0002 
0003 #include <iostream>
0004 #include "sstr.h"
0005 #include "sdebug.h"
0006 
0007 int main()
0008 {
0009     sdebug* dbg = new sdebug ; 
0010     dbg->zero(); 
0011     dbg->d12match_fail = 10 ; 
0012     std::cout << dbg->desc() << std::endl ; 
0013     return 0 ; 
0014 }
0015