libowfat/buffer/buffer_putlong.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
153 B
C

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