|
| iMatix home page | << | < | > | >> |
SFLVersion 2.10 |
#include "sfltok.h"
int
tok_size (
char **token_list)
Returns size of specified token list, in entries. Stops at the empty terminating token. Thus the table "This", "Is", "A", "String" will return a size of 4.
{
int
word_nbr;
for (word_nbr = 0; token_list [word_nbr]; word_nbr++);
return (word_nbr);
}
| | << | < | > | >> |
|