Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3375 → Rev 3376

/trunk/uspace/app/bdsh/util.c
237,3 → 237,13
 
return (cli_strtok_r(s, delim, &last));
}
 
/* Count and return the # of elements in an array */
unsigned int cli_count_args(char **args)
{
unsigned int i;
 
for (i=0; args[i] != NULL; i++);
return i;
}