MCPcopy Create free account
hub / github.com/BespokeSynth/BespokeSynth / StringCopy

Function StringCopy

Source/SynthGlobals.cpp:557–563  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

555}
556
557void StringCopy(char* dest, const char* source, int destLength)
558{
559 if (dest == source)
560 return;
561 strncpy(dest, source, destLength);
562 dest[destLength - 1] = 0;
563}
564
565int GetKeyModifiers()
566{

Callers 9

PollMethod · 0.85
SetNameMethod · 0.85
DropdownUpdatedMethod · 0.85
UpdateDisplayStringMethod · 0.85
SetTextMethod · 0.85
AcceptEntryMethod · 0.85
LoadStateMethod · 0.85
SetCanvasMethod · 0.85
SetStringMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected