Staging
v0.5.1
https://github.com/python/cpython
Revision aa088c6b5c01682901333a6badd538be764cdc3a authored by Fred Drake on 24 July 2003, 01:45:16 UTC, committed by Fred Drake on 24 July 2003, 01:45:16 UTC
- remove extraneous blank lines
- add missing \end{methoddesc} (prevented formatting)
1 parent 75c9877
Raw File
Tip revision: aa088c6b5c01682901333a6badd538be764cdc3a authored by Fred Drake on 24 July 2003, 01:45:16 UTC
- Americanize a spelling
Tip revision: aa088c6
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