libowfat/buffer/buffer_putsflush.c

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