Files
fx/fx.term/sys/rosetta/print.c
T

31 lines
430 B
C
Raw Normal View History

2026-07-19 13:26:01 +01:00
#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;
}