doxygen用にコメント修正。関数のstatic指定を外す
[YACASL2.git] / include / hash.h
index 3c05972..361e251 100644 (file)
@@ -13,11 +13,11 @@ typedef enum {
  * ハッシュ共用体
  */
 typedef struct {
-    UTYPE type;
+    UTYPE type;                 /**<ハッシュ値の元データのデータ型 */
     union {
-        char *s;
-        int i;
-    } val;
+        char *s;                /**<char型のデータ */
+        int i;                  /**<int型のデータ */
+    } val;                      /**<ハッシュ値の元データ */
 } HKEY;
 
 /**