doxygen用にコメント修正。関数のstatic指定を外す
[YACASL2.git] / include / cerr.h
index db9adbe..1433f90 100644 (file)
@@ -8,8 +8,8 @@
  * エラーの構造体
  */
 typedef struct {
-    int num;        /* エラー番号 */
-    char *msg;      /* エラーメッセージ */
+    int num;        /**<エラー番号 */
+    char *msg;      /**<エラーメッセージ */
 } CERR;
 
 /**
@@ -21,8 +21,8 @@ extern CERR *cerr;
  * エラーリスト型
  */
 typedef struct _CERRLIST {
-    struct _CERRLIST *next;
-    CERR *cerr;
+    struct _CERRLIST *next;     /**<リスト次項目へのポインタ */
+    CERR *cerr;                 /**<エラーの構造体 */
 } CERRLIST;
 
 /**