Files
bluelib/term/print.h
2024-10-24 21:31:22 +01:00

13 lines
315 B
C

#ifndef _BLUELIB_PRINT_H_
#define _BLUELIB_PRINT_H_
#include <blue/term.h>
#include <stdio.h>
extern int z__b_stream_is_tty(FILE *fp);
extern int z__b_stream_dimensions(FILE *fp, unsigned int *w, unsigned int *h);
extern int z__b_stream_cursorpos(
FILE *in, FILE *out, unsigned int *x, unsigned int *y);
#endif