Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/AutoHotkey/AutoHotkey
/ wcslcpy
Function
wcslcpy
source/util.cpp:447–452 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
445
446
447
void wcslcpy(LPWSTR aDst, LPCWSTR aSrc, size_t aDstSize)
448
{
449
--aDstSize;
450
wcsncpy(aDst, aSrc, aDstSize);
451
aDst[aDstSize] =
'\0'
;
452
}
453
454
455
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected