HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
24 #include "user_config.h"
37 printf(
"==============================\n");
75 while(*ptr ==
' ' || *ptr ==
'\t')
95 if(*ptr ==
' ' || *ptr ==
'\t')
168 printf(
"%s expected %d arguments only got %d\n", pat, min,argc);
278 while(*str && count < max)
290 while(*str && *str !=
'"')
299 while(*str >
' ' && *str <= 0x7e)
328 if(!str || *str == 0)
336 while(*str >
' ' && max > 0)
345 while(*str && *str !=
'"' && max > 0)
398 if(!str || *str == 0)
403 while(*ptr >
' ' && *ptr <= 0x7e )
417 if(
strncmp(str,pat,patlen) == 0)
439 if(!str || *str == 0)
461 return(
strtol(ptr, (
char **)&endptr, base));
MEMSPACE int WEAK_ATR strncasecmp(const char *str, const char *pat, size_t len)
Compare two strings without case maximum len bytes in size.
MEMSPACE int32_t get_value(char *str)
get a number
MEMSPACE int MATCH_LEN(char *str, char *pat)
Compare two strings limted to length of pattern.
MEMSPACE int printf(const char *format,...)
MEMSPACE char * get_token(char *str, char *token, int max)
return next token
MEMSPACE int MATCH(char *str, char *pat)
Compare two strings.
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
MEMSPACE int WEAK_ATR strcasecmp(const char *str, const char *pat)
Compare two strings without case.
MEMSPACE long strtol(const char *nptr, char **endptr, int base)
Convert ASCII string to number in a given base.
Various string and character functions.
MEMSPACE void trim_tail(char *str)
Trim White space and control characters from end of string.
MEMSPACE int WEAK_ATR strncmp(const char *str, const char *pat, size_t len)
Compare two strings maximum len bytes in size.
MEMSPACE int WEAK_ATR strcmp(const char *str, const char *pat)
Compare two strings.
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
MEMSPACE void sep()
print seperator
MEMSPACE char * nextspace(char *ptr)
Skip to first white space in a string - tabs and spaces.
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 MATCHI_LEN(char *str, char *pat)
Compare two strings without case limted to length of pattern.
MEMSPACE int token(char *str, char *pat)
Search for token in a string matching user pattern.
MEMSPACE char * skipspaces(char *ptr)
Skip white space in a string - tabs and spaces.
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 char * skipchars(char *str, char *pat)
Skip characters defined in user string.