MCPcopy Create free account
hub / github.com/SOUI2/soui / get4byteInt

Function get4byteInt

third-part/sqlite3/shell.c:4938–4940  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4936 return (a[0]<<8) + a[1];
4937}
4938static 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.

Callers 1

shell_dbinfo_commandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected