Home
last modified time | relevance | path

Searched refs:maxBytes (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/ext/wasm/common/
H A Dwhwasmutil.js825 target.jstrcpy = function(jstr, tgt, offset = 0, maxBytes = -1, addNul = true){ argument
831 if(maxBytes<0) maxBytes = tgt.length - offset;
832 if(!(maxBytes>0) || !(offset>=0)) return 0;
834 const begin = offset, end = offset + maxBytes - (addNul ? 1 : 0);