X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=include%2Fcerr.h;h=08532da410b825ad8ecdb01a441fab51c8eb2c1e;hp=828d03e848c6664f6505c5f5a5ca950ffca341da;hb=0d225ac1f580c59da7a063ef52da35c0af254dd3;hpb=285d44a446b45fa1a5ac66617b6920bc7ba81fa6 diff --git a/include/cerr.h b/include/cerr.h index 828d03e..08532da 100644 --- a/include/cerr.h +++ b/include/cerr.h @@ -5,31 +5,38 @@ #include #include #include +#include -#ifndef ARRAYSIZE -#define ARRAYSIZE(array) (sizeof(array)/sizeof(array[0])) -#endif +#include "cmem.h" -/* エラー番号 */ -extern int cerrno; +/* エラーの構造体 */ +typedef struct { + int num; /* エラー番号 */ + char *msg; /* エラーメッセージ */ +} CERR; -/* エラーメッセージ */ -extern char *cerrmsg; +/* 現在のエラー */ +extern CERR *cerr; -/* エラーコードリスト */ -typedef struct { - int num; - char *msg; -} CERRARRAY; +/* エラーリスト */ +typedef struct _CERRLIST { + struct _CERRLIST *next; + CERR *cerr; +} CERRLIST; -/* エラーメッセージ */ -extern CERRARRAY cerr[]; +extern CERRLIST *cerrlist; enum { CERRSTRSIZE = 10, /* エラーメッセージ中に挿入できる文字列のサイズ */ CERRMSGSIZE = 70, /* エラーメッセージのサイズ */ }; +/* エラーの初期化 */ +void cerr_init(); + +/* エラーリストを作成・追加する */ +bool addcerrlist(int cerrc, CERR cerrv[]); + /* エラー番号とエラーメッセージを設定 */ void setcerr(int num, const char *str);