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.
int iCountStar =0;
char szFirstToken[100];
char szAnotherToken[100];
char *pszToken = strtok(inBuffer,"*");
while (pszToken)
{
iCountStar++;
if (iCountStar == 1)
strcpy(szFirstToken,pszToken);
else if (iCountStar == 4)
strcpy(szAnotherToken,pszToken);
pszToken = strtok(0,"*");
}// end parsing
//Now you can check the values
if (!strcmp(szFirstToken,"STD"))
{
if (strcmp(szAnotherToken,"SOMETHING"))
{
// printf("%s\n",szAnotherToken);
}
}