#include"kyshdr.h" // stdio.h + stdlib.h +string.h #include #define RCSZ 80 #define OPEN(fp,fl,m) { if ((fp=fopen(fl,m))==NULL) { printf("Open %s 실패\n",fl); exit(5); } } /* 위의 마크로함수에서 '\'는 다음행으로 연결됨을 뜻함 */ typedef struct card_st CARD; //구조체 자료형을 선언 struct card_st { char name[16]; //성 명 char phon[16]; //전 화 CARD *next; // struct card_st *next; }; /* 함수원형 */ static int get_jno(); // 작업 번호 static i..