hi and sorry for my english
I want to create a function that check the characters one by one of a string
with switch command ... But i received errors
STRING* g_str = " ";
...
...
function f_check_str(STRING* l_str)
{
switch(l_str[1])
{
case 'a':
{ ..... }
break;
}
}
....
....
str_cpy(g_str, "filos");
f_check_str(g_str);
...
...
Thx all.
Best Regards.
Dimitris.