| 21297 | return (a[0]<<8) + a[1]; |
| 21298 | } |
| 21299 | static unsigned int get4byteInt(unsigned char *a){ |
| 21300 | return (a[0]<<24) + (a[1]<<16) + (a[2]<<8) + a[3]; |
| 21301 | } |
| 21302 | |
| 21303 | /* |
| 21304 | ** Implementation of the ".dbinfo" command. |
no outgoing calls
no test coverage detected