verify-sigstack.h

来自「linux下建立JAVA虚拟机的源码KAFFE」· C头文件 代码 · 共 33 行

H
33
字号
/* * verify-sigstack.h * * Copyright 2004 *   Kaffe.org contributors. See ChangeLog for details. All rights reserved. * * See the file "license.terms" for information on usage and redistribution * of this file. * * Interface to code for handing of signature stack in the verifier. */#if !defined(VERIFY_SIGSTACK_H)#define VERIFY_SIGSTACK_H/* * the sig stack is the stack of signatures that we have allocated memory for which * must be freed after verification. *//* TODO: use the builtin hash table data structure instead  * so we can avoid repeats */typedef struct SigStack{	const char* sig;	struct SigStack* next;} SigStack;extern SigStack*          pushSig(SigStack* sigs, const char* sig);extern void               freeSigStack(SigStack* sigs);#endif /* !defined(VERIFY_SIGSTACK_H) */

⌨️ 快捷键说明

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