1 Star 1 Fork 0

boss/nvme-cli

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
common.h 374 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef _COMMON_H
#define _COMMON_H
#define __round_mask(x, y) ((__typeof__(x))((y)-1))
#define round_up(x, y) ((((x)-1) | __round_mask(x, y))+1)
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
#define min(x, y) ((x) > (y) ? (y) : (x))
#define max(x, y) ((x) > (y) ? (x) : (y))
#define __stringify_1(x...) #x
#define __stringify(x...) __stringify_1(x)
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/bosspoi/nvme-cli.git
git@gitee.com:bosspoi/nvme-cli.git
bosspoi
nvme-cli
nvme-cli
master

搜索帮助