dtags.h
来自「C程序漏洞检查!」· C头文件 代码 · 共 27 行
H
27 行
/***** uno: dtags.c *****//* Copyright (c) 2000-2003 by Lucent Technologies - Bell Laboratories *//* All Rights Reserved. This software is for educational purposes only. *//* Permission is given to distribute this code provided that this intro- *//* ductory message is not removed and no monies are exchanged. *//* No guarantee is expressed or implied by the distribution of this code. *//* Software written by Gerard J. Holzmann based on the public domain *//* ANSI-C parser Ctree Version 0.14 from Shaun Flisakowski *//* dataflow tags used in dflow.c and in uno_global.c: */#define DEF 1#define FCALL (1<<1) /* 2 */#define USE (1<<2) /* 4 */#define REF0 (1<<3) /* 8 */#define REF1 (1<<4) /* 16 */#define REF2 (1<<5) /* 32 */#define DEREF (1<<6) /* 64 */#define ALIAS (1<<7) /* 128 */#define ARRAY_DECL (1<<8) /* 256 */#define HIDE (1<<9) /* 512 */#define DECL (1<<10) /* 1024 */#define USEafterdef (1<<11) /* 2048 */#define USEbeforedef (1<<12) /* 4096 */#define UNO_CONST (1<<13) /* 8192 */#define PARAM (1<<14) /* 16384 */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?