1scan_xlong(3) Library Functions Manual scan_xlong(3)
2
3
4
6 scan_xlong - parse an unsigned long integer in hexadecimal ASCII repre‐
7 sentation
8
10 #include <scan.h>
11
12 size_t scan_xlong(const char *src,unsigned long *dest);
13
15 scan_xlong parses an unsigned long integer in hexadecimal ASCII repre‐
16 sentation from src and writes the result into dest. It returns the num‐
17 ber of bytes read from src.
18
19 scan_xlong understands both upper and lower case letters.
20
21 scan_xlong does not expect or understand a "0x" prefix.
22
24 fmt_xlong(3)
25
26
27
28 scan_xlong(3)