목차
없음
본문내용
// 토큰추출하여 define,undef매크로가 나올경우
// 이중 링크드 리스트에 상입,제거하는 프로그램
#include
#include
typedef struct macro_s *list_pointer;
typedef struct macro_s {
char name[30];
char value[30];
list_pointer next, prev;
}macro;
list_pointer head=NULL;
int GetToken(char *buff)
{
static char token1[70],token2[30],token3[30];
// 이중 링크드 리스트에 상입,제거하는 프로그램
#include
#include
typedef struct macro_s *list_pointer;
typedef struct macro_s {
char name[30];
char value[30];
list_pointer next, prev;
}macro;
list_pointer head=NULL;
int GetToken(char *buff)
{
static char token1[70],token2[30],token3[30];