MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey-v1.0 / GetFormatInteger

Method GetFormatInteger

Source/script.cpp:10207–10215  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10205}
10206
10207VarSizeType Script::GetFormatInteger(char *aBuf)
10208{
10209 if (!aBuf)
10210 return 1;
10211 // For backward compatibility (due to StringCaseSense), never change the case used here:
10212 *aBuf = g.FormatIntAsHex ? 'H' : 'D';
10213 *(aBuf + 1) = '\0';
10214 return 1;
10215}
10216
10217VarSizeType Script::GetFormatFloat(char *aBuf)
10218{

Callers 1

GetMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected