unixstuff.h 318 Bytes
Newer Older
1 2 3
/* Fudge unix isatty and fileno for RISCOS */

#include <stdio.h>
4
#include <time.h>
5 6 7 8

int fileno(FILE *f);
int isatty(int fn);
unsigned int unixtime(unsigned int ld,unsigned int ex);
9 10
int acorntime(unsigned int *ex, unsigned int *ld, time_t ut);

11 12
int isdir(char *fn);
int isfile(char *fn);
13
int object_exists(char *fn);
14