| 4936 | return (a[0]<<8) + a[1]; |
| 4937 | } |
| 4938 | static unsigned int get4byteInt(unsigned char *a){ |
| 4939 | return (a[0]<<24) + (a[1]<<16) + (a[2]<<8) + a[3]; |
| 4940 | } |
| 4941 | |
| 4942 | /* |
| 4943 | ** Implementation of the ".info" command. |
no outgoing calls
no test coverage detected