FACT++  1.0
int TokenString::getToken ( char *&  token)

Definition at line 145 of file tokenstring.cxx.

References curr_token_ptr, token_buff, and token_ptr.

Referenced by DimServer::getClientServices(), getNTokens(), and DimClient::getServerServices().

146 {
147 
148  if(!*token_ptr)
149  {
152  return(0);
153  }
154 
156  token_ptr += (int)strlen(curr_token_ptr)+1;
157  token = curr_token_ptr;
158 
159  return(1);
160 }
char * curr_token_ptr
Definition: tokenstring.hxx:25
char * token_ptr
Definition: tokenstring.hxx:24
char * token_buff
Definition: tokenstring.hxx:23

+ Here is the caller graph for this function: