|
// define,undef,ifdef,elif,else,endif매크로 나올때
// 리스트에 상입,제거 하는 함수
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct macro_s *list_pointer;
typedef struct macro_s {
char *name;
char *value;
list_pointer next, prev;
}macro;
li
|
- 페이지 8페이지
- 가격 2,500원
- 등록일 2006.05.03
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
/ 토큰추출하여 define,undef매크로가 나올경우
// 환형 이중 링크드 리스트에 상입,제거하는 프로그램
#include <stdio.h>
#include <stdlib.h>
typedef struct macro_s *list_pointer;
typedef struct macro_s {
char *name;
char *value;
list_pointer next, prev;
}macro;&
|
- 페이지 12페이지
- 가격 2,500원
- 등록일 2006.05.03
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
// 토큰추출하여 define,undef매크로가 나올경우
// 이중 링크드 리스트에 상입,제거하는 프로그램
#include <stdio.h>
#include <stdlib.h>
typedef struct macro_s *list_pointer;
typedef struct macro_s {
char name[30];
char value[30];
list_pointer next, prev;
}macro;
|
- 페이지 9페이지
- 가격 2,500원
- 등록일 2006.05.03
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|