2015-04-19 02:11:41 +00:00
|
|
|
#define __LIBOWFAT_INTERNAL
|
2001-02-04 01:28:45 +00:00
|
|
|
#include "str.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
|
2005-04-23 15:50:16 +00:00
|
|
|
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
|
|
|
}
|