Staging
v0.5.1
https://github.com/python/cpython
Revision 044d2ce37c08f542c2c4f8b0ee4582ff06cbfb68 authored by Georg Brandl on 19 February 2006, 09:51:33 UTC, committed by Georg Brandl on 19 February 2006, 09:51:33 UTC
1 parent 4655481
Raw File
Tip revision: 044d2ce37c08f542c2c4f8b0ee4582ff06cbfb68 authored by Georg Brandl on 19 February 2006, 09:51:33 UTC
Patch #1337756: fileinput now accepts Unicode filenames.
Tip revision: 044d2ce
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