| 15542 | return (a[0]<<8) + a[1]; |
| 15543 | } |
| 15544 | static unsigned int get4byteInt(unsigned char *a){ |
| 15545 | return (a[0]<<24) + (a[1]<<16) + (a[2]<<8) + a[3]; |
| 15546 | } |
| 15547 | |
| 15548 | /* |
| 15549 | ** Implementation of the ".dbinfo" command. |
no outgoing calls
no test coverage detected