Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 7d42c22d6d77add480ff415014614d270cfc37df authored by Hye-Shik Chang on 28 March 2006, 08:36:44 UTC
Relocate the misplaced heading.
Tip revision: 7d42c22
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