Staging
v0.5.1
https://github.com/python/cpython
Revision fe12aa67fc93ddc97fce2ecb856eef6545efd98b authored by Ezio Melotti on 05 May 2011, 11:19:48 UTC, committed by Ezio Melotti on 05 May 2011, 11:19:48 UTC
1 parent a436e71
Raw File
Tip revision: fe12aa67fc93ddc97fce2ecb856eef6545efd98b authored by Ezio Melotti on 05 May 2011, 11:19:48 UTC
#11997: fix typo in init.rst.
Tip revision: fe12aa6
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