C
signed char stricmppgm2ram( BYTE* a, ROM BYTE* b );
Description
Performs a case-insensitive comparison of a string in RAM to a string in ROM. This function performs identically to strcmppgm2ram, except that the comparison is not case-sensitive.
Preconditions
None
Parameters
|
Parameters |
Description |
|
a |
Pinter to tring in RAM |
|
b |
Pointer to string in ROM |
Return Values
|
Return Values |
Description |
|
-1 |
a < b |
|
0 |
a = b |
|
1 |
a > b |