diff options
author | Guido van Rossum <guido@python.org> | 1991-04-04 15:21:57 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-04-04 15:21:57 (GMT) |
commit | 0bd2441e002ec0947071741a024e253da7355b02 (patch) | |
tree | 631d21bad21b807b2b93db9fb6207b16a17707cd /Include/fileobject.h | |
parent | 26203aa42260e416a68e717f5723169c2f57b77c (diff) | |
download | cpython-0bd2441e002ec0947071741a024e253da7355b02.zip cpython-0bd2441e002ec0947071741a024e253da7355b02.tar.gz cpython-0bd2441e002ec0947071741a024e253da7355b02.tar.bz2 |
Added external interface to readline, for raw_input().
Diffstat (limited to 'Include/fileobject.h')
-rw-r--r-- | Include/fileobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/fileobject.h b/Include/fileobject.h index fc9988d..beaebe9 100644 --- a/Include/fileobject.h +++ b/Include/fileobject.h @@ -31,3 +31,4 @@ extern typeobject Filetype; extern object *newfileobject PROTO((char *, char *)); extern object *newopenfileobject PROTO((FILE *, char *, char *)); extern FILE *getfilefile PROTO((object *)); +extern object *filegetline PROTO((object *, int)); |