1fmt_8long(3) Library Functions Manual fmt_8long(3)
2
3
4
6 fmt_8long - write an octal ASCII representation of an unsigned long
7 integer
8
10 #include <fmt.h>
11
12 size_t fmt_8long(char *dest,size_t source);
13
15 fmt_8long writes an ASCII representation ('0' to '7', base 8) of source
16 to dest and returns the number of bytes written.
17
18 fmt_8long does not append \0.
19
20 If dest equals FMT_LEN (i.e. is zero), fmt_8long returns the number of
21 bytes it would have written.
22
23 For convenience, fmt.h defines the integer FMT_8LONG to be big enough
24 to contain every possible fmt_8long output plus \0.
25
27 scan_8long(3)
28
29
30
31 fmt_8long(3)