HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Go to the documentation of this file.
33 #define WEAK_ATR __attribute__((weak))
MEMSPACE char * stralloc(char *str)
Allocate space for string.
MEMSPACE WEAK_ATR char * strcpy(char *dest, const char *src)
copy a string
MEMSPACE int WEAK_ATR isupper(int c)
Is a character upper case.
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
MEMSPACE void WEAK_ATR strupper(char *str)
UPPERCASE a string.
MEMSPACE int WEAK_ATR islower(int c)
MEMSPACE int WEAK_ATR tolower(int c)
Convert character to lower case, only if it is upper case.
MEMSPACE int WEAK_ATR strcasecmp(const char *str, const char *pat)
Compare two strings without case.
MEMSPACE WEAK_ATR char * strncpy(char *dest, const char *src, size_t size)
copy a string of at most N characters
MEMSPACE WEAK_ATR char * strcat(char *dest, const char *src)
Append string.
MEMSPACE int WEAK_ATR strncmp(const char *str, const char *pat, size_t len)
Compare two strings maximum len bytes in size.
MEMSPACE WEAK_ATR char * strncat(char *dest, const char *src, size_t max)
Append string of at most N bytes from src.
MEMSPACE void * memchr(const void *str, int c, size_t size)
find a character in a string of maximum size
MEMSPACE char * strnalloc(char *str, int len)
Allocate space for string with maximum size.
MEMSPACE int WEAK_ATR isdigit(int c)
undo any existing macros
MEMSPACE void WEAK_ATR reverse(char *str)
Reverse a string in place Example: abcdef -> fedcba.
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 int WEAK_ATR toupper(int c)
Convert character to upper case, only if it is lower case.
MEMSPACE int WEAK_ATR strcmp(const char *str, const char *pat)
Compare two strings.