MCPcopy Create free account
hub / github.com/audacity/audacity / get4byteInt

Function get4byteInt

lib-src/sqlite/shell.c:15544–15546  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15542 return (a[0]<<8) + a[1];
15543}
15544static 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.

Callers 1

shell_dbinfo_commandFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected