2003-09-05 21:09:14 +00:00
|
|
|
.TH buffer_putulonglong 3
|
|
|
|
.SH NAME
|
|
|
|
buffer_putulonglong \- write a decimal ASCII representation of a signed
|
|
|
|
long integer to buffer
|
|
|
|
.SH SYNTAX
|
2017-05-13 22:51:26 +00:00
|
|
|
.B #include <libowfat/buffer.h>
|
2003-09-05 21:09:14 +00:00
|
|
|
|
|
|
|
int \fBbuffer_putulonglong\fP(buffer* \fIb\fR,unsigned long long \fIx\fR);
|
|
|
|
.SH DESCRIPTION
|
|
|
|
buffer_putulonglong is equivalent to passing the result of fmt_ulonglong to
|
|
|
|
buffer_put.
|
2004-11-25 20:51:53 +00:00
|
|
|
.SH "RETURN VALUE"
|
|
|
|
0 if everything is fine, -1 on error (setting \fIerrno\fR).
|
2003-09-05 21:09:14 +00:00
|
|
|
.SH "SEE ALSO"
|
|
|
|
fmt_ulonglong(3), buffer_put(3), buffer_flush(3), buffer(3)
|