Staging
v0.8.1
https://github.com/python/cpython
Revision 328e3775df24c418b921c140c78e4e964f85b09d authored by Benjamin Peterson on 06 May 2010, 22:49:28 UTC, committed by Benjamin Peterson on 06 May 2010, 22:49:28 UTC
1 parent 7aaef84
Raw File
Tip revision: 328e3775df24c418b921c140c78e4e964f85b09d authored by Benjamin Peterson on 06 May 2010, 22:49:28 UTC
ensure that availability information is on its own line at the end of the function docs
Tip revision: 328e377
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