Staging
v0.5.1
https://github.com/python/cpython
Revision 8ceecd359e27cbbfd2cbf672c263e716a9b3b67b authored by Vinay Sajip on 25 May 2007, 07:22:57 UTC, committed by Vinay Sajip on 25 May 2007, 07:22:57 UTC
1 parent 26e2439
Raw File
Tip revision: 8ceecd359e27cbbfd2cbf672c263e716a9b3b67b authored by Vinay Sajip on 25 May 2007, 07:22:57 UTC
Updated documentation for SysLogHandler (#1720726).
Tip revision: 8ceecd3
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