Staging
v0.5.1
https://github.com/python/cpython
Revision 74105f142406727c06304bf4a7ac9a3385aaa0fa authored by Anthony Baxter on 09 March 2005, 11:45:49 UTC, committed by Anthony Baxter on 09 March 2005, 11:45:49 UTC
1 parent 1e90144
Raw File
Tip revision: 74105f142406727c06304bf4a7ac9a3385aaa0fa authored by Anthony Baxter on 09 March 2005, 11:45:49 UTC
tabstop delenda est
Tip revision: 74105f1
unixstuff.h
/* Fudge unix isatty and fileno for RISCOS */

#include <stdio.h>
#include <time.h>

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

int isdir(char *fn);
int isfile(char *fn);
int object_exists(char *fn);

back to top