Include glightbox plugin enabling zooming figures

This commit is contained in:
krahets
2023-09-22 13:08:21 +08:00
parent d225b416cf
commit 1067f30fe7
2 changed files with 18 additions and 26 deletions

View File

@@ -7,12 +7,12 @@
#include "../utils/common.h"
/* 物品 */
struct item {
struct Item {
int w; // 物品重量
int v; // 物品价值
};
typedef struct item Item;
typedef struct Item Item;
/* 按照价值密度排序 */
int sortByValueDensity(const void *a, const void *b) {