libowfat/buffer/buffer_putlonglong.c
leitner 63e070c1cb add long long buffer routines
add tai64 and tai6464 typedefs
add error message buffer routines
add io timeout routines
2003-09-05 21:09:14 +00:00

9 lines
166 B
C

#include "buffer.h"
#include "fmt.h"
int buffer_putlonglong(buffer *b,signed long long l) {
char buf[FMT_LONG];
return buffer_put(b,buf,fmt_longlong(buf,l));
}