25 std::string function = std::string(line, 13, std::string::npos);
26 std::size_t
pos = function.find(
' ');
27 if(
pos != std::string::npos)
28 function = std::string(function, 0,
pos);
30 std::cout <<
"{ \"" << function <<
"\",\n";
31 std::cout <<
" \"#line 1 \\\"<builtin-library-" << function
38 for(
unsigned i = 0; i < line.size(); i++)
40 const char ch = line[i];
45 else if(
ch ==
'\r' ||
ch ==
'\n')
52 std::cout <<
"\\n\"\n";