Staging
v0.5.1
Revision 73c01d410117a573731e6c2afc9694005f8d11aa authored by Martin v. Löwis on 14 February 2008, 11:26:18 UTC, committed by Martin v. Löwis on 14 February 2008, 11:26:18 UTC
only available if asserts are left in the code, in cases where they
can't be triggered from Python code.
1 parent abcb59a
Raw File
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