31 lines
430 B
C
31 lines
430 B
C
|
|
#define _POSIX_C_SOURCE 200809L
|
||
|
|
|
||
|
|
#include "../../print.h"
|
||
|
|
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <string.h>
|
||
|
|
|
||
|
|
int z__fx_stream_is_tty(FILE *fp)
|
||
|
|
{
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
int z__fx_stream_dimensions(FILE *fp, unsigned int *w, unsigned int *h)
|
||
|
|
{
|
||
|
|
return -1;
|
||
|
|
}
|
||
|
|
|
||
|
|
int z__fx_stream_cursorpos(
|
||
|
|
FILE *in,
|
||
|
|
FILE *out,
|
||
|
|
unsigned int *x,
|
||
|
|
unsigned int *y)
|
||
|
|
{
|
||
|
|
return -1;
|
||
|
|
}
|
||
|
|
|
||
|
|
int z__fx_stream_set_modifier(FILE *fp, enum z__fx_stream_modifier mod)
|
||
|
|
{
|
||
|
|
return -1;
|
||
|
|
}
|