1fmt_ulonglong(3)           Library Functions Manual           fmt_ulonglong(3)
2
3
4

NAME

6       fmt_ulonglong  - write an ASCII representation of an unsigned long long
7       integer
8

SYNTAX

10       #include <fmt.h>
11
12       size_t fmt_ulonglong(char *dest,unsigned long long source);
13

DESCRIPTION

15       fmt_ulonglong writes an ASCII representation ('0' to '9', base  10)  of
16       source to dest and returns the number of bytes written.
17
18       fmt_ulonglong does not append \0.
19
20       If dest equals FMT_LEN (i.e. is zero), fmt_ulonglong returns the number
21       of bytes it would have written.
22
23       For convenience, fmt.h defines the integer FMT_ULONG to be  big  enough
24       to contain every possible fmt_ulonglong output plus \0.
25

SEE ALSO

27       scan_ulonglong(3)
28
29
30
31                                                              fmt_ulonglong(3)
Impressum