简单行编辑

#define TRUE 1
#define FALSE 0
#define STACK_INIT_SIZE 10002

#include "iostream"
#include "cstdlib"
#include "cstdio"
#include "cstring"

using namespace std;

typedef int Status;  //Status 相当于 int
typedef struct Stack
{
 char * base;
 char * top;
}SqStack; 

/