1 #ifndef YACASL2_CERR_H_INCLUDED
2 #define YACASL2_CERR_H_INCLUDED
10 typedef struct _CERR {
12 char *msg; /**<エラーメッセージ */
23 typedef struct _CERRLIST {
24 struct _CERRLIST *next; /**<リスト次項目へのポインタ */
25 CERR *cerr; /**<エラーの構造体 */
31 extern CERRLIST *cerrlist;
34 CERRSTRSIZE = 10, /**<エラーメッセージ中に挿入できる文字列のサイズ */
35 CERRMSGSIZE = 70, /**<エラーメッセージのサイズ */
46 void addcerrlist(int cerrc, CERR cerrv[]);
56 void setcerr(int num, const char *str);
59 * エラーリストから、エラー番号に対応するメッセージを返す
61 char *getcerrmsg(int num);