mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Skip white space before parsing /.
This commit is contained in:
parent
f960d0cc31
commit
02346be7cb
1 changed files with 3 additions and 3 deletions
|
@ -2005,12 +2005,12 @@ int main(int _argc, const char* _argv[])
|
||||||
memset(&data[size+1], 0, padding);
|
memset(&data[size+1], 0, padding);
|
||||||
fclose(file);
|
fclose(file);
|
||||||
|
|
||||||
input = data;
|
input = const_cast<char*>(bx::strws(data) );
|
||||||
while (input[0] == '$')
|
while (input[0] == '$')
|
||||||
{
|
{
|
||||||
const char* str = input+1;
|
const char* str = bx::strws(input+1);
|
||||||
const char* eol = bx::streol(str);
|
const char* eol = bx::streol(str);
|
||||||
const char* nl = bx::strnl(eol);
|
const char* nl = bx::strnl(eol);
|
||||||
input = const_cast<char*>(nl);
|
input = const_cast<char*>(nl);
|
||||||
|
|
||||||
if (0 == strncmp(str, "input", 5) )
|
if (0 == strncmp(str, "input", 5) )
|
||||||
|
|
Loading…
Reference in a new issue