/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/python/Pillow/py2/libImaging/QuantHeap.h
27 строк
603 B
Anton Myagkov
Update ydb version to 24.4 (#4579)
07 фев 2026, 11:59
Не верифицирован
07 фев 2026, 11:59
2c21cae
Код
Авторство
О чём код?
/* * The Python Imaging Library * $Id$ * * image quantizer * * Written by Toby J Sargeant <tjs@longford.cs.monash.edu.au>. * * See the README file for information on usage and redistribution. */ #ifndef __QUANTHEAP_H__ #define __QUANTHEAP_H__ #include "QuantTypes.h" typedef struct _Heap Heap; typedef int (*HeapCmpFunc)(const Heap *,const void *,const void *); void ImagingQuantHeapFree(Heap *); int ImagingQuantHeapRemove(Heap *,void **); int ImagingQuantHeapAdd(Heap *,void *); int ImagingQuantHeapTop(Heap *,void **); Heap *ImagingQuantHeapNew(HeapCmpFunc); #endif // __QUANTHEAP_H__