AdH Kraken 0.0.0
Next generation Adaptive Hydraulics
All Data Structures Files Functions Variables Pages
tokens.h
1#ifndef H_TOKENS_
2#define H_TOKENS_
3// token
4void get_token(char *line, char **token);
5void get_next_token(char **token);
6int get_next_token_int(char **token);
7double get_next_token_dbl(char **token);
8int get_compare_token(char *line, char **token, char *cmp);
9void get_compare_token_increment(char *line, char **token, char *cmp, int *idum);
10int get_compare_next_token(char **token, char *cmp);
11
12#endif