Staging
v0.8.1
https://github.com/python/cpython
Revision d00429860f7b10050b22b0eb2bb864111b6bd193 authored by Neal Norwitz on 29 May 2003, 19:03:43 UTC, committed by Neal Norwitz on 29 May 2003, 19:03:43 UTC
1 parent a4ebef5
Raw File
Tip revision: d00429860f7b10050b22b0eb2bb864111b6bd193 authored by Neal Norwitz on 29 May 2003, 19:03:43 UTC
Add section for 2.2.3 final and memory leak plug for tkinter
Tip revision: d004298
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