1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 13:33:52 +01:00

Define ZS_memchr() as either wmemchr() or memchr().

This commit is contained in:
Wayne Davison 2006-02-09 22:12:54 +00:00
parent 449014dda3
commit 6698e6f676

@ -62,6 +62,7 @@ typedef wint_t ZLE_INT_T;
#define ZS_zarrdup wcs_zarrdup
#define ZS_width wcslen
#define ZS_strchr wcschr
#define ZS_memchr wmemchr
/*
* Functions that operate on a metafied string.
@ -108,6 +109,7 @@ typedef int ZLE_INT_T;
#define ZS_zarrdup zarrdup
#define ZS_width ztrlen
#define ZS_strchr strchr
#define ZS_memchr memchr
/*
* Functions that operate on a metafied string.