| Return Type | Method Summary |
| CHAR | AddVarToVector(Vector *varVect, CHAR *word)
It will split the incoming word in to parameter name and its value and store it in the var Vector. |
| CHAR* | ReadFirstWord(CHAR *startPtr, CHAR *word)
The "startPtr" will point to a character stream (line), this method retrive the first word and put it in the variable "word". |
| CHAR | SplitParamNameAndValue(CHAR *word, CHAR **paramName, CHAR **paramValue)
It will split the given string into two strings (param name & value), by using '=' as divider. |
| Method Details |