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_putsflush(buffer* b,const char* x) {
|
2001-02-05 17:57:02 +00:00
|
|
|
return buffer_putflush(b,x,str_len(x));
|
2001-02-04 01:28:45 +00:00
|
|
|
}
|