libowfat/buffer/buffer_puts.c

8 lines
148 B
C
Raw Normal View History

#define __LIBOWFAT_INTERNAL
2001-02-04 01:28:45 +00:00
#include "str.h"
#include "buffer.h"
int buffer_puts(buffer* b,const char* x) {
2001-02-05 17:11:20 +00:00
return buffer_put(b,x,str_len(x));
2001-02-04 01:28:45 +00:00
}