beautify.h

来自「Decompilation Dos Program is a technique」· C头文件 代码 · 共 28 行

H
28
字号
/*---------------------------------------------------------------------------*/
// DisC Decompilation Wizard
// written by
// Satish Kumar S
// satish@miel.mot.com
//
// Copyright 1999-2001 Satish Kumar S
//
// Permission is granted to use this software for research purposes as
// long as this notice stays attached to this software.
/*---------------------------------------------------------------------------*/
#ifndef _BEAUTIFY_H
#define _BEAUTIFY_H
#include <stdio.h>
#include "StrList.h"
class CBeautifier
{
public:
  void DelRedundantParantheses(char *tStr);
  StringList *GetLabel(StringList *sList,char *labelptr);
  void BeautifyCode(StringList *sList);
  void DeleteUnusedLabels(StringList *sList);
  StringList *DisplayList(StringList *sList,FILE *fp,int Indent=0,int InCase=0);
  int IsJumpingAcrossBlocks(StringList *srcList,StringList *tgtList);
};

#endif		// Beautify.h

⌨️ 快捷键说明

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