mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
241 B
12 lines
241 B
#include <resolv.h>
|
|
|
|
int dn_skipname(const unsigned char *s, const unsigned char *end)
|
|
{
|
|
const unsigned char *p;
|
|
for (p=s; p<end; p++)
|
|
if (!*p) return p-s+1;
|
|
else if (*p>=192)
|
|
if (p+1<end) return p-s+2;
|
|
else break;
|
|
return -1;
|
|
}
|
|
|