Staging
v0.5.1
https://github.com/python/cpython
Revision 48bd7f3a71c05dafec820dbbf76e611add7a9849 authored by Tim Peters on 29 August 2004, 22:38:38 UTC, committed by Tim Peters on 29 August 2004, 22:38:38 UTC
1 parent 0973b99
Raw File
Tip revision: 48bd7f3a71c05dafec820dbbf76e611add7a9849 authored by Tim Peters on 29 August 2004, 22:38:38 UTC
Whitespace normalization. test_difflib passes again.
Tip revision: 48bd7f3
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