doxygen用にコメント修正。関数のstatic指定を外す
[YACASL2.git] / include / cerr.h
index 586ab4d..1433f90 100644 (file)
@@ -1,36 +1,62 @@
 #ifndef YACASL2_CERR_H_INCLUDED
 #define YACASL2_CERR_H_INCLUDED
 
-#include <stdlib.h>
-#include <string.h>
-#include <assert.h>
+#include <stdbool.h>
+#include "cmem.h"
 
-#ifndef ARRAYSIZE
-#define ARRAYSIZE(array) (sizeof(array)/sizeof(array[0]))
-#endif
-
-/* エラー番号 */
-extern int cerrno;
-
-/* エラーメッセージ */
-extern char *cerrmsg;
-
-/* エラーコードリスト */
+/**
+ * エラーの構造体
+ */
 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,    /**<エラーメッセージのサイズ */
 };
 
-/* エラー番号とエラーメッセージを設定 */
-void setcerr(int num, const char *val);
+/**
+ * エラーの初期化
+ */
+void cerr_init();
+
+/**
+ * エラーリストを作成・追加する
+ */
+bool addcerrlist(int cerrc, CERR cerrv[]);
+
+/**
+ * 現在のエラーを設定する
+ */
+void setcerr(int num, const char *str);
 
-/* エラー番号からメッセージを返す */
+/**
+ * エラーリストから、エラー番号に対応するメッセージを返す
+ */
 char *getcerrmsg(int num);
 
-/* エラーを解放する */
+/**
+ * エラーリストと現在のエラーを解放する
+ */
 void freecerr();
 #endif