Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
static const char seps[] = " \t\r\n";
const char* Tok(const char* str)
{
int n;
if (str && *str)
{
str += strspn(str,seps);
n = strcspn(str,seps);
if (n)
{
Tok(str+n);
while (n--)
putchar(*str++);
putchar('\n');
}
}
return str;
}