From f0757696480e8d246cb98f0f67d66093a55a5e0a Mon Sep 17 00:00:00 2001 From: Masahiko AMANO Date: Wed, 21 Dec 2022 22:34:04 +0300 Subject: [PATCH] style(core): edit comments in core.h --- include/core.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/core.h b/include/core.h index a04c87b..84490d4 100644 --- a/include/core.h +++ b/include/core.h @@ -39,7 +39,7 @@ typedef struct kazari { uint64_t tanzaku_id; // Tanzaku ID } Kazari; -// Sasahyou (笹表) - the file database +// Sasahyou (笹表) - database of files typedef struct sasahyou { uint64_t created_ts; // Sasahyou creation timestamp uint64_t modified_ts; // Sasahyou last modification timestamp @@ -49,7 +49,7 @@ typedef struct sasahyou { FILE *file; // Storage file for sasahyou } Sasahyou; -// Sappyou (冊表) - the tanzaku database +// Sappyou (冊表) - database of tanzaku typedef struct sappyou { uint64_t created_ts; // Sappyou creation timestamp uint64_t modified_ts; // Sappyou last modification timestamp @@ -59,7 +59,7 @@ typedef struct sappyou { FILE *file; // Storage file for sappyou } Sappyou; -// Shoppyou (飾表) - the kazari database +// Shoppyou (飾表) - database of kazari typedef struct shoppyou { uint64_t created_ts; // Shoppyou creation timestamp uint64_t modified_ts; // Shoppyou last modification timestamp