Staging
v0.8.1
https://github.com/python/cpython
Revision 80a09c70bfa4592a8067274f49f24f9fffe8b795 authored by Benjamin Peterson on 24 May 2011, 17:42:51 UTC, committed by Benjamin Peterson on 24 May 2011, 17:42:51 UTC
1 parent 7f5cd45
Raw File
Tip revision: 80a09c70bfa4592a8067274f49f24f9fffe8b795 authored by Benjamin Peterson on 24 May 2011, 17:42:51 UTC
use '->' to indicate return values
Tip revision: 80a09c7
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