Staging
v0.5.1
https://github.com/python/cpython
Revision b1d867f14965e2369d31a3fcdab5bca34b4d81b4 authored by Martin Panter on 26 May 2016, 05:28:50 UTC, committed by Martin Panter on 26 May 2016, 05:28:50 UTC
Most fixes to Doc/ and Lib/ directories by Ville Skyttä.
1 parent 5db0b33
Raw File
Tip revision: b1d867f14965e2369d31a3fcdab5bca34b4d81b4 authored by Martin Panter on 26 May 2016, 05:28:50 UTC
Issue #27076: Doc, comment and test function name spelling fixes
Tip revision: b1d867f
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