libowfat/buffer/buffer_putnlflush.c

8 lines
133 B
C
Raw Normal View History

2002-05-17 21:14:54 +00:00
#include "str.h"
#include "buffer.h"
2002-05-17 21:16:01 +00:00
int buffer_putnlflush(buffer* b) {
2002-05-17 21:14:54 +00:00
static char nl='\n';
return buffer_putflush(b,&nl,1);
}