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