summaryrefslogtreecommitdiff
path: root/nasmlib.h
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2008-06-01 21:34:49 -0700
committerH. Peter Anvin <hpa@zytor.com>2008-06-01 21:34:49 -0700
commit6ecc159a54c643a46c5682fd9245601c252924f5 (patch)
tree19ee83dab5cca46eb0840a6d1fcf92f7eaa907ac /nasmlib.h
parent8cad14bbcf0b8c056e6f81dccf4af38537e0bac6 (diff)
downloadnasm-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.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/nasmlib.h b/nasmlib.h
index 39137af..7eb5c47 100644
--- a/nasmlib.h
+++ b/nasmlib.h
@@ -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