add more legacy functions: setlinebuf and setbuffer
This commit is contained in:
parent
8b61c81693
commit
e72180083e
4 changed files with 17 additions and 1 deletions
|
|
@ -156,6 +156,8 @@ char *cuserid(char *);
|
|||
#define off64_t off_t
|
||||
int asprintf(char **, const char *, ...);
|
||||
int vasprintf(char **, const char *, va_list);
|
||||
void setlinebuf(FILE *);
|
||||
void setbuffer(FILE *, char *, size_t);
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#include "stdio_impl.h"
|
||||
#include <stdio.h>
|
||||
|
||||
void setbuf(FILE *f, char *buf)
|
||||
{
|
||||
|
|
|
|||
7
src/stdio/setbuffer.c
Normal file
7
src/stdio/setbuffer.c
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#define _GNU_SOURCE
|
||||
#include <stdio.h>
|
||||
|
||||
void setbuffer(FILE *f, char *buf, size_t size)
|
||||
{
|
||||
setvbuf(f, buf, buf ? _IOFBF : _IONBF, size);
|
||||
}
|
||||
7
src/stdio/setlinebuf.c
Normal file
7
src/stdio/setlinebuf.c
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
#define _GNU_SOURCE
|
||||
#include <stdio.h>
|
||||
|
||||
void setlinebuf(FILE *f)
|
||||
{
|
||||
setvbuf(f, 0, _IOLBF, 0);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue