谁知道这个加壳工具在哪下?

来源:百度知道 编辑:UC知道 时间:2024/05/26 05:03:23
是P字母打头的,能过卡巴的,很管用,具体记不清了.哪位有下载地址麻烦发给我,谢谢!

国外的还真不容易找呢
踏破铁鞋啊
是这个吧 汉化的

http://www.onlinedown.net/soft/56181.htm

你要干什么?

#include "stdio.h"
#define STACK_INIT_SIZE 100;
#define STACKINCREMENT 10;
#define overflow -2;
#include "malloc.h"
#include "stdlib.h"
typedef void Status;
typedef struct{
int *base;
int *top;
int stacksize;
}SqStack;
Status InitStack(SqStack S){
S.base=(int *)malloc(STACK_INIT_SIZE*sizeof(int));
if(!S.base)exit(overflow);
S.top=S.base;
S.stacksize=STACK_INIT_SIZE;
return;
}

Status Push(SqStack S,int e){
if(S.top-S.base>=S.stacksize){
S.base=(int *)realloc(S.base,(S.stacksize+STACKINCREMENT)*sizeof(int));
if(!S.base)exit(overflow);
S.top=S.base+S.stacksize;
S.stacksize+=STACKINCREMENT;
}
*S.t