Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 | 1 |
2 /* Bytes (String) object interface */ | 2 /* Bytes (String) object interface */ |
3 | 3 |
4 #ifndef Py_BYTESOBJECT_H | 4 #ifndef Py_BYTESOBJECT_H |
5 #define Py_BYTESOBJECT_H | 5 #define Py_BYTESOBJECT_H |
6 #ifdef __cplusplus | 6 #ifdef __cplusplus |
7 extern "C" { | 7 extern "C" { |
8 #endif | 8 #endif |
9 | 9 |
10 #include <stdarg.h> | 10 #include <stdarg.h> |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
213 PyAPI_FUNC(void*) _PyBytesWriter_WriteBytes(_PyBytesWriter *writer, | 213 PyAPI_FUNC(void*) _PyBytesWriter_WriteBytes(_PyBytesWriter *writer, |
214 void *str, | 214 void *str, |
215 const void *bytes, | 215 const void *bytes, |
216 Py_ssize_t size); | 216 Py_ssize_t size); |
217 #endif /* Py_LIMITED_API */ | 217 #endif /* Py_LIMITED_API */ |
218 | 218 |
219 #ifdef __cplusplus | 219 #ifdef __cplusplus |
220 } | 220 } |
221 #endif | 221 #endif |
222 #endif /* !Py_BYTESOBJECT_H */ | 222 #endif /* !Py_BYTESOBJECT_H */ |
LEFT | RIGHT |