structidx.c

来自「Small Device C Compiler 面向Inter8051」· C语言 代码 · 共 33 行

C
33
字号
/* Code to generate code to see how structure indexs are evaluated.   Originally part of gbdk/examples/gb/paint.c */#include <testfwk.h>typedef unsigned char UBYTE;typedef struct cursor_info_{  UBYTE data_idx;  UBYTE w, h;  UBYTE hot_x, hot_y;} cursor_info;const cursor_info cursors[] ={  { 0, 1, 1, 0, 0 },  { 1, 2, 2, 0, 15 },  { 5, 2, 2, 0, 15 },  { 9, 2, 2, 2, 15 },  { 13, 2, 2, 0, 15 },  { 17, 2, 2, 5, 10 }};UBYTE current_cursor;UBYTEgetWidth(void){  return cursors[current_cursor].w;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?