Staging
v0.5.1
https://github.com/python/cpython
Revision bcc55d691ec6507d7c85d3ddceea0d1ce4d57147 authored by Georg Brandl on 06 October 2013, 09:57:13 UTC, committed by Georg Brandl on 06 October 2013, 09:57:13 UTC
1 parent b3d6fe3
Raw File
Tip revision: bcc55d691ec6507d7c85d3ddceea0d1ce4d57147 authored by Georg Brandl on 06 October 2013, 09:57:13 UTC
Fix small grammar mistake.
Tip revision: bcc55d6
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