** Convert a 2-byte or 4-byte big-endian integer into a native integer */
| 4933 | ** Convert a 2-byte or 4-byte big-endian integer into a native integer |
| 4934 | */ |
| 4935 | static unsigned int get2byteInt(unsigned char *a){ |
| 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 | } |
no outgoing calls
no test coverage detected