2006-04-17 05:06:10 +00:00
|
|
|
.TH range_str2inbuf 3
|
|
|
|
.SH NAME
|
|
|
|
range_str2inbuf \- range check for string in buffer
|
|
|
|
.SH SYNTAX
|
2017-05-13 22:51:26 +00:00
|
|
|
.B #include <libowfat/rangecheck.h>
|
2006-04-17 05:06:10 +00:00
|
|
|
|
|
|
|
int \fBrange_str2inbuf\fP(const void* buf,size_t len,const void* string);
|
|
|
|
.SH DESCRIPTION
|
|
|
|
range_str2inbuf checks that the zero terminated UTF-16-string starting at
|
|
|
|
\fIstring\fR starts and ends within the buffer
|
|
|
|
\fIbuf\fR[0..\fIlen\fR-1].
|
|
|
|
|
|
|
|
If the string is not 0-terminated but the length is known beforehand,
|
|
|
|
use range_arrayinbuf instead.
|
|
|
|
.SH "RETURN VALUE"
|
|
|
|
If the buffer is implausible (buf is NULL or buf+len has an integer overflow), return 0.
|
|
|
|
|
|
|
|
If \fIstring\fR points before or after the buffer, return 0.
|
|
|
|
|
|
|
|
If there is no zero terminator within the buffer, return 0.
|
|
|
|
|
|
|
|
Otherwise, return 1.
|
|
|
|
.SH "SEE ALSO"
|
|
|
|
rangecheck(3)
|