1 #include "buffer.h"
2 #include "fmt.h"
3 
buffer_putxlong(buffer * b,unsigned long l)4 int buffer_putxlong(buffer *b,unsigned long l) {
5   char buf[FMT_XLONG];
6   return buffer_put(b,buf,fmt_xlong(buf,l));
7 }
8 
9