Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 5927786e61c62bd6b28031f5f9b851411cf1cb00 authored by Barry Warsaw on 01 October 2008, 22:05:43 UTC
Today is the release date
Tip revision: 5927786
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