Staging
v0.8.1
https://github.com/python/cpython
Revision 166e625d6c1e37e014445ecf59568a089cb2e728 authored by Andrew M. Kuchling on 07 October 2004, 12:04:50 UTC, committed by Andrew M. Kuchling on 07 October 2004, 12:04:50 UTC
1 parent 5e3f923
Raw File
Tip revision: 166e625d6c1e37e014445ecf59568a089cb2e728 authored by Andrew M. Kuchling on 07 October 2004, 12:04:50 UTC
Add -m to man page
Tip revision: 166e625
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