📄 macros.h
字号:
/* * macros.h * * Written by: Ullrich Hafner * * This file is part of FIASCO (獸籸actal 獻籱age 獳籲d 玈籩quence 獵O籨ec) * Copyright (C) 1994-2000 Ullrich Hafner <hafner@bigfoot.de> *//* * $Date: 2000/06/14 20:49:37 $ * $Author: hafner $ * $Revision: 5.1 $ * $State: Exp $ */#ifndef _MACROS_H#define _MACROS_H/******************************************************************************* System configuration section *******************************************************************************/#ifndef SEEK_CUR# define SEEK_CUR 1#endif /* not SEEK_CUR */#ifdef WIN32#undef max#undef min#endif /* not WIN32 *//***************************************************************************** Various macros *****************************************************************************/#define streq(str1, str2) (strcmp ((str1), (str2)) == 0)#define strneq(str1, str2) (strcmp ((str1), (str2)) != 0)#define square(x) ((x) * (x))#define first_band(color) ((unsigned) ((color) ? Y : GRAY))#define last_band(color) ((unsigned) ((color) ? Cr : GRAY))#define width_of_level(l) ((unsigned) (1 << ((l) >> 1)))#define height_of_level(l) ((unsigned) (1 << (((l) + 1) >> 1)))#define size_of_level(l) ((unsigned) (1 << (l)))#define address_of_level(l) ((unsigned) (size_of_level (l) - 1))#define size_of_tree(l) ((unsigned) (address_of_level ((l) + 1)))#define is_odd(n) (abs (n) % 2)#ifndef max#define max(a,b) ((a) < (b) ? (b) : (a))#endif#ifndef min#define min(a,b) ((a) > (b) ? (b) : (a))#endif#define _(x) (x) #define MAXSTRLEN 1024#define MAXSTRLEN_SCANF "%1024s"typedef enum color {GRAY = 0, Y = 0, Cb = 1, Cr = 2} color_e;#endif /* _MACROS_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -