blob: 37e4caca1b323a107ba75cf601669f3ddf87cacd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "portparse.h"
int portparse(unsigned char *y,const char *x)
{
long long d = 0;
long long j;
for (j = 0;j < 5 && x[j] >= '0' && x[j] <= '9';++j)
d = d * 10 + (x[j] - '0');
if (j == 0) return 0;
if (x[j]) return 0;
y[0] = d >> 8;
y[1] = d;
return 1;
}
|