#include "utility_io.h"
#include "error.h"
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
Go to the source code of this file.
Namespaces | |
namespace | KDL |
Functions | |
void | KDL::_check_istream (std::istream &is) |
checks validity of basic io of is | |
int | KDL::_EatSpace (std::istream &is, int *countp=NULL) |
int | KDL::_EatUntilEndOfComment (std::istream &is, int *countp=NULL) |
int | KDL::_EatUntilEndOfLine (std::istream &is, int *countp=NULL) |
void | KDL::Eat (std::istream &is, const char *descript) |
Eats characters of the stream as long as they satisfy the description in descript. | |
void | KDL::Eat (std::istream &is, int delim) |
Eats characters of the stream until the character delim is encountered. | |
void | KDL::EatEnd (std::istream &is, int delim) |
Eats characters of the stream until the character delim is encountered similar to Eat(is,delim) but spaces at the end are not read. | |
void | KDL::EatWord (std::istream &is, const char *delim, char *storage, int maxsize) |
Eats a word of the stream delimited by the letters in delim or space(tabs. | |
char | KDL::Upper (char ch) |