stack.h

来自「GCC编译器源代码」· C头文件 代码 · 共 43 行

H
43
字号
/* stack.h - structed access to object stacks   Copyright (C) 1988 Free Software Foundation, Inc.   Contributed by Michael Tiemann (tiemann@cygnus.com).This program is free software; you can redistribute it and/or modify itunder the terms of the GNU General Public License as published by theFree Software Foundation; either version 2, or (at your option) anylater version.This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, 59 Temple Place - Suite 330,Boston, MA 02111-1307, USA.  *//* Summary: this file contains additional structures that layer   on top of obstacks for GNU C++.  *//* Stack of data placed on obstacks.  */   struct stack_level{  /* Pointer back to previous such level.  */  struct stack_level *prev;  /* Point to obstack we should return to.  */  struct obstack *obstack;  /* First place we start putting data.  */  tree *first;  /* Number of entries we can have from `first'.     Right now we are dumb: if we overflow, abort.  */  int limit;};struct stack_level *push_stack_level PROTO((struct obstack *, char *, int));struct stack_level *pop_stack_level PROTO((struct stack_level *));

⌨️ 快捷键说明

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