HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
MEMSPACE int MATCHI_LEN(char *str, char *pat)
Compare two strings without case limted to length of pattern.
MEMSPACE char * skipchars(char *str, char *pat)
Skip characters defined in user string.
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
MEMSPACE char * skipspaces(char *ptr)
Skip white space in a string - tabs and spaces.
MEMSPACE char * nextspace(char *ptr)
Skip to first white space in a string - tabs and spaces.
MEMSPACE void trim_tail(char *str)
Trim White space and control characters from end of string.
MEMSPACE int32_t get_value(char *str)
get a number
MEMSPACE int token(char *str, char *pat)
Search for token in a string matching user pattern.
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.
MEMSPACE int MATCH_LEN(char *str, char *pat)
Compare two strings limted to length of pattern.
MEMSPACE void sep(void)
print seperator
MEMSPACE char * get_token(char *str, char *token, int max)
return next token
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...
MEMSPACE int MATCH(char *str, char *pat)
Compare two strings.