Staging
v0.5.1
https://github.com/python/cpython
Revision 3d0962222c9da8640ed26c3e41a768166c542606 authored by Terry Jan Reedy on 16 November 2015, 12:32:19 UTC, committed by Terry Jan Reedy on 16 November 2015, 12:32:19 UTC
1 parent 93ed946
Raw File
Tip revision: 3d0962222c9da8640ed26c3e41a768166c542606 authored by Terry Jan Reedy on 16 November 2015, 12:32:19 UTC
Issue #24750: Improve appearance of IDLE editor window status bar.
Tip revision: 3d09622
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