ヘッダーファイルがありますstack.h
:
typedef char ElemType;
typedef struct{
ElemType data[MaxSize];
int top;
} SqStack;
int Push_Sq(SqStack *s, ElemType e);
int Pop_Sq(SqStack *s, ElemType *e);
int GetTop_Sq(SqStack *s, ElemType *e);
そして今、私はこのヘッダーを含むいくつかのソースファイルを持っています、私は代わりに使用int
したいです、それは可能ですか?どうすればよいですか?(元のヘッダーファイルを変更したくない)ElemType
char