mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-14 04:30:33 +00:00
5 lines
125 B
C
5 lines
125 B
C
#include <stdio.h>
|
|
|
|
void setbuffer(FILE *stream,char *buf,size_t size)
|
|
{ (void)setvbuf(stream,buf,buf?_IOFBF:_IONBF,size); }
|