Staging
v0.5.1
https://github.com/python/cpython
Revision 271e56e88740cdcc2a6bddbd0894aec25f984f4e authored by Terry Jan Reedy on 17 March 2013, 19:28:10 UTC, committed by Terry Jan Reedy on 17 March 2013, 19:28:10 UTC
1 parent 3e50fb3
Raw File
Tip revision: 271e56e88740cdcc2a6bddbd0894aec25f984f4e authored by Terry Jan Reedy on 17 March 2013, 19:28:10 UTC
Issue #17415: Trim trailing whitespace
Tip revision: 271e56e
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