| 115 | } |
| 116 | |
| 117 | static int pow2gt (int x) { --x; x|=x>>1; x|=x>>2; x|=x>>4; x|=x>>8; x|=x>>16; return x+1; } |
| 118 | |
| 119 | typedef struct {char *buffer; int length; int offset; } printbuffer; |
| 120 |
no outgoing calls
no test coverage detected
searching dependent graphs…