X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=include%2Fcerr.h;h=5ff200c653420341882f93bd1fbdd05af1381144;hp=9c191c11b1d74f25f1200a58987cf90a994311fc;hb=6eb54846c27b216d7602a5107d9383f8f4324d71;hpb=e07b6371cc8a59c6793a895e968ff2c6cf28181b diff --git a/include/cerr.h b/include/cerr.h index 9c191c1..5ff200c 100644 --- a/include/cerr.h +++ b/include/cerr.h @@ -1,32 +1,67 @@ #ifndef YACASL2_CERR_H_INCLUDED #define YACASL2_CERR_H_INCLUDED -#include -#include -#include +#include +#include "cmem.h" -#ifndef ARRAYSIZE -#define ARRAYSIZE(array) (sizeof(array)/sizeof(array[0])) -#endif +/** + * エラーの構造体 + */ +typedef struct _CERR { + int num; /**<エラー番号 */ + char *msg; /**<エラーメッセージ */ +} CERR; + +/** + * 現在のエラー + */ +extern CERR *cerr; + +/** + * エラーリスト型 + */ +typedef struct _CERRLIST { + struct _CERRLIST *next; /**<リスト次項目へのポインタ */ + CERR *cerr; /**<エラーの構造体 */ +} CERRLIST; + +/** + * エラーリスト + */ +extern CERRLIST *cerrlist; + +enum { + CERRSTRSIZE = 10, /**<エラーメッセージ中に挿入できる文字列のサイズ */ + CERRMSGSIZE = 70, /**<エラーメッセージのサイズ */ +}; -/* エラー番号 */ -extern int cerrno; +/** + * エラーの初期化 + */ +void cerr_init(); -/* エラーメッセージ */ -extern char *cerrmsg; +/** + * エラーリストを作成・追加する + */ +void addcerrlist(int cerrc, CERR cerrv[]); -/* エラーコードリスト */ -typedef struct { - int num; - char *msg; -} CERRARRAY; +/** + * エラーリストを表示する + */ +void printcerrlist(); -/* エラー番号とエラーメッセージを設定 */ -void setcerr(int num, const char *val); +/** + * 現在のエラーを設定する + */ +void setcerr(int num, const char *str); -/* エラー番号からメッセージを返す */ +/** + * エラーリストから、エラー番号に対応するメッセージを返す + */ char *getcerrmsg(int num); -/* エラーを解放する */ +/** + * エラーリストと現在のエラーを解放する + */ void freecerr(); #endif