MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / scanforURL

Function scanforURL

Engine/source/gui/controls/guiMLTextCtrl.cpp:1576–1582  ·  view source on GitHub ↗

--------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1574
1575//--------------------------------------------------------------------------
1576static bool scanforURL(const char *str, U32 &idx, char c)
1577{
1578 U32 startidx = idx;
1579 while(str[idx] != c && str[idx] && str[idx] != '>' && str[idx] != '\n')
1580 idx++;
1581 return str[idx] == c && startidx != idx;
1582}
1583
1584//--------------------------------------------------------------------------
1585static S32 getHexVal(char c)

Callers 1

reflowMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected