MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / recoverStrlen

Function recoverStrlen

modules/dasSQLITE/sqlite/shell.c:13780–13783  ·  view source on GitHub ↗

** Like strlen(). But handles NULL pointer arguments. */

Source from the content-addressed store, hash-verified

13778** Like strlen(). But handles NULL pointer arguments.
13779*/
13780static int recoverStrlen(const char *zStr){
13781 if( zStr==0 ) return 0;
13782 return (int)(strlen(zStr)&0x7fffffff);
13783}
13784
13785/*
13786** This function is a no-op if the recover handle passed as the first

Callers 2

recoverAddTableFunction · 0.85
recoverInitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected