mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-21 14:07:53 +00:00
bf9710fd5a
This only affects build_android, if nacl-gcc-prep is run then build/`uname -s` will be created.
20 lines
514 B
C
20 lines
514 B
C
#include "nameparse.h"
|
|
|
|
int nameparse(unsigned char *s,const char *x)
|
|
{
|
|
long long pos;
|
|
long long j;
|
|
if (!x) return 0;
|
|
for (pos = 0;pos < 256;++pos) s[pos] = 0;
|
|
pos = 0;
|
|
while (*x) {
|
|
if (*x == '.') { ++x; continue; }
|
|
for (j = 0;x[j];++j) if (x[j] == '.') break;
|
|
if (j > 63) return 0;
|
|
if (pos < 0 || pos >= 256) return 0; s[pos++] = j;
|
|
while (j > 0) { if (pos < 0 || pos >= 256) return 0; s[pos++] = *x++; --j; }
|
|
}
|
|
if (pos < 0 || pos >= 256) return 0; s[pos++] = 0;
|
|
return 1;
|
|
}
|