Staging
v0.5.1
https://github.com/python/cpython
Revision 073ff240e79d90766c6cc36b520fc58f742f0cf3 authored by Martin v. Löwis on 13 December 2008, 15:42:40 UTC, committed by Martin v. Löwis on 13 December 2008, 15:42:40 UTC
1 parent 0896d3e
Raw File
Tip revision: 073ff240e79d90766c6cc36b520fc58f742f0cf3 authored by Martin v. Löwis on 13 December 2008, 15:42:40 UTC
Prepare for 2.5.3c1.
Tip revision: 073ff24
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