Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Moddable-OpenSource/moddable
/ fxGetNextStringD
Function
fxGetNextStringD
xs/sources/xsLexical.c:811–818 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
809
}
810
811
txBoolean fxGetNextStringD(int c, txU4* value)
812
{
813
if ((
'0'
<= c) && (c <=
'9'
))
814
*value = (*value * 10) + (c -
'0'
);
815
else
816
return 0;
817
return 1;
818
}
819
820
txBoolean fxGetNextStringX(int c, txU4* value)
821
{
Callers
1
fxGetNextEntity
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected