X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=include%2Fcerr.h;h=7265b0ed25c476e333e1bcd2a04dcdf0fc6705b3;hp=a4d12462f8560e8261c1936799d8543d3780400d;hb=4ee27a568fb9222907a566e59aaefe248f08a8e4;hpb=5562b8293058464957a1f833777e187a78220ed5 diff --git a/include/cerr.h b/include/cerr.h index a4d1246..7265b0e 100644 --- a/include/cerr.h +++ b/include/cerr.h @@ -11,34 +11,34 @@ #define ARRAYSIZE(array) (sizeof(array)/sizeof(array[0])) #endif -/* エラー番号 */ -extern int cerrno; +/* mallocを実行し、メモリを確保できない場合は */ +/* エラーを出力して終了 */ +void *malloc_chk(size_t size, char *tag); -/* エラーメッセージ */ -extern char *cerrmsg; - -/* エラーコード配列 */ +/* エラーの構造体 */ typedef struct { - int num; - char *msg; -} CERRARRAY; + int num; /* エラー番号 */ + char *msg; /* エラーメッセージ */ +} CERR; + +/* 現在のエラー */ +extern CERR *cerr; -/* エラーコードリスト */ +/* エラーリスト */ typedef struct _CERRLIST { struct _CERRLIST *next; - CERRARRAY *err; + CERR *cerr; } CERRLIST; -/* エラーメッセージ */ -extern CERRLIST *cerr; +extern CERRLIST *cerrlist; enum { CERRSTRSIZE = 10, /* エラーメッセージ中に挿入できる文字列のサイズ */ CERRMSGSIZE = 70, /* エラーメッセージのサイズ */ }; -/* エラーを追加する */ -bool addcerrlist(int cerrc, CERRARRAY cerrv[]); +/* エラーリストを作成・追加する */ +bool addcerrlist(int cerrc, CERR cerrv[]); /* エラー番号とエラーメッセージを設定 */ void setcerr(int num, const char *str);