numpy  2.0.0
src/multiarray/buffer.h
Go to the documentation of this file.
00001 #ifndef _NPY_PRIVATE_BUFFER_H_
00002 #define _NPY_PRIVATE_BUFFER_H_
00003 
00004 #ifdef NPY_ENABLE_SEPARATE_COMPILATION
00005 extern NPY_NO_EXPORT PyBufferProcs array_as_buffer;
00006 #else
00007 NPY_NO_EXPORT PyBufferProcs array_as_buffer;
00008 #endif
00009 
00010 NPY_NO_EXPORT void
00011 _array_dealloc_buffer_info(PyArrayObject *self);
00012 
00013 NPY_NO_EXPORT PyArray_Descr*
00014 _descriptor_from_pep3118_format(char *s);
00015 
00016 #endif