Staging
v0.5.1
https://github.com/python/cpython
Revision 084486b234b0b78bde371c5c227bd4951ed6acde authored by Martin v. Löwis on 13 December 2008, 15:36:49 UTC, committed by Martin v. Löwis on 13 December 2008, 15:36:49 UTC
1 parent 710fb8b
Raw File
Tip revision: 084486b234b0b78bde371c5c227bd4951ed6acde authored by Martin v. Löwis on 13 December 2008, 15:36:49 UTC
Issue #1706039: Support continued reading from a file even after
Tip revision: 084486b
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