Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | /* File object interface */ |
| 3 | |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 4 | #ifndef Py_FILEOBJECT_H |
| 5 | #define Py_FILEOBJECT_H |
| 6 | #ifdef __cplusplus |
| 7 | extern "C" { |
| 8 | #endif |
| 9 | |
Guido van Rossum | 051ab12 | 1995-02-27 10:17:52 +0000 | [diff] [blame] | 10 | extern DL_IMPORT(PyTypeObject) PyFile_Type; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 11 | |
Tim Peters | 59c9a64 | 2001-09-13 05:38:56 +0000 | [diff] [blame] | 12 | #define PyFile_Check(op) PyObject_TypeCheck(op, &PyFile_Type) |
| 13 | #define PyFile_CheckExact(op) ((op)->ob_type == &PyFile_Type) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 14 | |
Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 15 | extern DL_IMPORT(PyObject *) PyFile_FromString(char *, char *); |
| 16 | extern DL_IMPORT(void) PyFile_SetBufSize(PyObject *, int); |
| 17 | extern DL_IMPORT(PyObject *) PyFile_FromFile(FILE *, char *, char *, |
| 18 | int (*)(FILE *)); |
| 19 | extern DL_IMPORT(FILE *) PyFile_AsFile(PyObject *); |
| 20 | extern DL_IMPORT(PyObject *) PyFile_Name(PyObject *); |
| 21 | extern DL_IMPORT(PyObject *) PyFile_GetLine(PyObject *, int); |
| 22 | extern DL_IMPORT(int) PyFile_WriteObject(PyObject *, PyObject *, int); |
| 23 | extern DL_IMPORT(int) PyFile_SoftSpace(PyObject *, int); |
Tim Peters | c1bbcb8 | 2001-11-28 22:13:25 +0000 | [diff] [blame^] | 24 | extern DL_IMPORT(int) PyFile_WriteString(const char *, PyObject *); |
Andrew M. Kuchling | 06051ed | 2000-07-13 23:56:54 +0000 | [diff] [blame] | 25 | extern DL_IMPORT(int) PyObject_AsFileDescriptor(PyObject *); |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 26 | |
Mark Hammond | 26cffde | 2001-05-14 12:17:34 +0000 | [diff] [blame] | 27 | /* The default encoding used by the platform file system APIs |
| 28 | If non-NULL, this is different than the default encoding for strings |
| 29 | */ |
| 30 | extern DL_IMPORT(const char *) Py_FileSystemDefaultEncoding; |
| 31 | |
Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 32 | #ifdef __cplusplus |
| 33 | } |
| 34 | #endif |
| 35 | #endif /* !Py_FILEOBJECT_H */ |