ucspi-ssl  0.99e
TLS encryption for IPv6 communication
scan_uint.c
Go to the documentation of this file.
1 #include "scan.h"
2 
3 unsigned int scan_uint(register const char *s,register unsigned int *u)
4 {
5  register unsigned int pos; unsigned long result;
6  pos = scan_ulong(s,&result);
7  *u = result; return pos;
8 }
unsigned int scan_uint(register const char *s, register unsigned int *u)
Definition: scan_uint.c:3
unsigned int scan_ulong(const char *, unsigned long *)