HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
parsing.h
Go to the documentation of this file.
1 
23 #ifndef _PARSING_H_
24 #define _PARSING_H_
25 
26 /* parsing.c */
27 MEMSPACE void sep ( void );
28 MEMSPACE void trim_tail ( char *str );
29 MEMSPACE char *skipspaces ( char *ptr );
30 MEMSPACE char *nextspace ( char *ptr );
31 MEMSPACE char *skipchars ( char *str , char *pat );
32 MEMSPACE int MATCH ( char *str , char *pat );
33 MEMSPACE int MATCHARGS ( char *str , char *pat , int min , int argc );
34 MEMSPACE int MATCHI ( char *str , char *pat );
35 MEMSPACE int MATCH_LEN ( char *str , char *pat );
36 MEMSPACE int MATCHI_LEN ( char *str , char *pat );
37 MEMSPACE int split_args ( char *str , char *argv [], int max );
38 MEMSPACE char *get_token ( char *str , char *token , int max );
39 MEMSPACE int token ( char *str , char *pat );
40 MEMSPACE int32_t get_value ( char *str );
41 #endif
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
MATCHI_LEN
MEMSPACE int MATCHI_LEN(char *str, char *pat)
Compare two strings without case limted to length of pattern.
Definition: parsing.c:230
skipchars
MEMSPACE char * skipchars(char *str, char *pat)
Skip characters defined in user string.
Definition: parsing.c:111
MATCHI
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
Definition: parsing.c:183
skipspaces
MEMSPACE char * skipspaces(char *ptr)
Skip white space in a string - tabs and spaces.
Definition: parsing.c:70
nextspace
MEMSPACE char * nextspace(char *ptr)
Skip to first white space in a string - tabs and spaces.
Definition: parsing.c:88
trim_tail
MEMSPACE void trim_tail(char *str)
Trim White space and control characters from end of string.
Definition: parsing.c:49
get_value
MEMSPACE int32_t get_value(char *str)
get a number
Definition: parsing.c:432
token
MEMSPACE int token(char *str, char *pat)
Search for token in a string matching user pattern.
Definition: parsing.c:392
MATCHARGS
MEMSPACE int MATCHARGS(char *str, char *pat, int min, int argc)
Match two strings and compare argument index Display message if the number of arguments is too few.
Definition: parsing.c:161
MATCH_LEN
MEMSPACE int MATCH_LEN(char *str, char *pat)
Compare two strings limted to length of pattern.
Definition: parsing.c:203
sep
MEMSPACE void sep(void)
print seperator
Definition: parsing.c:35
get_token
MEMSPACE char * get_token(char *str, char *token, int max)
return next token
Definition: parsing.c:323
split_args
MEMSPACE int split_args(char *str, char *argv[], int max)
Split string into arguments stored in argv[] We split source string into arguments Warning: source st...
Definition: parsing.c:260
MATCH
MEMSPACE int MATCH(char *str, char *pat)
Compare two strings.
Definition: parsing.c:143