You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
375 B
C
14 lines
375 B
C
#include <rangecheck.h>
|
|
#include <inttypes.h>
|
|
|
|
/* does an UTF-16 string starting at "ptr" lie in buf[0..len-1]? */
|
|
int range_str2inbuf(const void* buf,size_t len,const void* stringstart) {
|
|
const uint16_t* x;
|
|
const uint16_t* y;
|
|
if (!range_ptrinbuf(buf,len,x=stringstart)) return 0;
|
|
y=(const uint16_t*)((char*)x+len);
|
|
for (; x+1<=y && *x; ++x);
|
|
return (x+1<=y);
|
|
}
|
|
|