X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=include%2Fcerr.h;h=1433f9034f0886987796482769ab383e044ef861;hp=db9adbecdc2005b80bf046fd381d5613dc6d60b5;hb=7f7bde5dd1305cfc598fe09030c69aad0dc01368;hpb=d1f82970bf7d41db2fea11b08cd8e308f6cb8138 diff --git a/include/cerr.h b/include/cerr.h index db9adbe..1433f90 100644 --- a/include/cerr.h +++ b/include/cerr.h @@ -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; /**