Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 906e26e897b4b2e4b938c65fc4cf9d3b13fa069d authored by Martin v. Löwis on 14 January 2010, 17:41:58 UTC
Prepare for 2.5.5c1.
Tip revision: 906e26e
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