diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-06-01 21:34:49 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-06-01 21:34:49 -0700 |
commit | 6ecc159a54c643a46c5682fd9245601c252924f5 (patch) | |
tree | 19ee83dab5cca46eb0840a6d1fcf92f7eaa907ac /nasmlib.h | |
parent | 8cad14bbcf0b8c056e6f81dccf4af38537e0bac6 (diff) | |
download | nasm-6ecc159a54c643a46c5682fd9245601c252924f5.tar.gz nasm-6ecc159a54c643a46c5682fd9245601c252924f5.tar.bz2 nasm-6ecc159a54c643a46c5682fd9245601c252924f5.zip |
qstring: backquoted strings seem to work now...
Hopefully backquoted strings should work correctly now.
Diffstat (limited to 'nasmlib.h')
-rw-r--r-- | nasmlib.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -122,9 +122,11 @@ int nasm_stricmp(const char *, const char *); #elif defined(HAVE_STRNICMP) #define nasm_strnicmp strnicmp #else -int nasm_strnicmp(const char *, const char *, int); +int nasm_strnicmp(const char *, const char *, size_t); #endif +int nasm_memicmp(const char *, const char *, size_t); + #if defined(HAVE_STRSEP) #define nasm_strsep strsep #else |