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