HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
stringsup.h
Go to the documentation of this file.
1 
23 #ifndef _STRINGSUP_H_
24 #define _STRINGSUP_H_
25 
26 // Named address space
27 #ifndef MEMSPACE
28 #define MEMSPACE
29 #endif
30 
31 // Weak attribute
32 #ifndef WEAK_ATR
33 #define WEAK_ATR __attribute__((weak))
34 #endif
35 
37 #undef isdigit
38 #undef isupper
39 #undef islower
40 #undef tolower
41 #undef toupper
42 
43 /* stringsup.c */
44 MEMSPACE int WEAK_ATR isdigit ( int c );
45 MEMSPACE int WEAK_ATR isupper ( int c );
46 MEMSPACE int WEAK_ATR islower ( int c );
47 MEMSPACE int WEAK_ATR tolower ( int c );
48 MEMSPACE int WEAK_ATR toupper ( int c );
49 MEMSPACE void *memchr ( const void *str , int c , size_t size );
50 MEMSPACE size_t WEAK_ATR strlen ( const char *str );
51 MEMSPACE WEAK_ATR char *strcpy ( char *dest , const char *src );
52 MEMSPACE WEAK_ATR char *strncpy ( char *dest , const char *src , size_t size );
53 MEMSPACE WEAK_ATR char *strcat ( char *dest , const char *src );
54 MEMSPACE WEAK_ATR char *strncat ( char *dest , const char *src , size_t max );
55 MEMSPACE void WEAK_ATR reverse ( char *str );
56 MEMSPACE void WEAK_ATR strupper ( char *str );
57 MEMSPACE int WEAK_ATR strcmp ( const char *str , const char *pat );
58 MEMSPACE int WEAK_ATR strncmp ( const char *str , const char *pat , size_t len );
59 MEMSPACE int WEAK_ATR strcasecmp ( const char *str , const char *pat );
60 MEMSPACE int WEAK_ATR strncasecmp ( const char *str , const char *pat , size_t len );
61 MEMSPACE char *strnalloc ( char *str , int len );
62 MEMSPACE char *stralloc ( char *str );
63 #endif
stralloc
MEMSPACE char * stralloc(char *str)
Allocate space for string.
Definition: stringsup.c:406
strcpy
MEMSPACE WEAK_ATR char * strcpy(char *dest, const char *src)
copy a string
Definition: stringsup.c:160
isupper
MEMSPACE int WEAK_ATR isupper(int c)
Is a character upper case.
Definition: stringsup.c:57
strlen
MEMSPACE size_t WEAK_ATR strlen(const char *str)
String Length.
Definition: stringsup.c:144
strupper
MEMSPACE void WEAK_ATR strupper(char *str)
UPPERCASE a string.
Definition: stringsup.c:256
islower
MEMSPACE int WEAK_ATR islower(int c)
Definition: stringsup.c:74
tolower
MEMSPACE int WEAK_ATR tolower(int c)
Convert character to lower case, only if it is upper case.
Definition: stringsup.c:91
strcasecmp
MEMSPACE int WEAK_ATR strcasecmp(const char *str, const char *pat)
Compare two strings without case.
Definition: stringsup.c:328
strncpy
MEMSPACE WEAK_ATR char * strncpy(char *dest, const char *src, size_t size)
copy a string of at most N characters
Definition: stringsup.c:179
MEMSPACE
#define MEMSPACE
Definition: stringsup.h:28
strcat
MEMSPACE WEAK_ATR char * strcat(char *dest, const char *src)
Append string.
Definition: stringsup.c:199
strncmp
MEMSPACE int WEAK_ATR strncmp(const char *str, const char *pat, size_t len)
Compare two strings maximum len bytes in size.
Definition: stringsup.c:303
strncat
MEMSPACE WEAK_ATR char * strncat(char *dest, const char *src, size_t max)
Append string of at most N bytes from src.
Definition: stringsup.c:215
memchr
MEMSPACE void * memchr(const void *str, int c, size_t size)
find a character in a string of maximum size
Definition: stringsup.c:122
strnalloc
MEMSPACE char * strnalloc(char *str, int len)
Allocate space for string with maximum size.
Definition: stringsup.c:381
isdigit
MEMSPACE int WEAK_ATR isdigit(int c)
undo any existing macros
Definition: stringsup.c:40
reverse
MEMSPACE void WEAK_ATR reverse(char *str)
Reverse a string in place Example: abcdef -> fedcba.
Definition: stringsup.c:233
strncasecmp
MEMSPACE int WEAK_ATR strncasecmp(const char *str, const char *pat, size_t len)
Compare two strings without case maximum len bytes in size.
Definition: stringsup.c:352
toupper
MEMSPACE int WEAK_ATR toupper(int c)
Convert character to upper case, only if it is lower case.
Definition: stringsup.c:108
strcmp
MEMSPACE int WEAK_ATR strcmp(const char *str, const char *pat)
Compare two strings.
Definition: stringsup.c:278
WEAK_ATR
#define WEAK_ATR
Definition: stringsup.h:33