Add comment

This commit is contained in:
CK Tan 2017-03-18 14:23:09 -07:00
parent 09de99f7a8
commit a0b38a34ea
1 changed files with 2 additions and 1 deletions

3
toml.h
View File

@ -83,7 +83,8 @@ TOML_EXTERN int toml_rtoi(const char* s, int64_t* ret);
TOML_EXTERN int toml_rtod(const char* s, double* ret);
/* Timestamp types. The year, month, day, hour, minute, second, z
* fields may be NULL if they are not relevant.
* fields may be NULL if they are not relevant. e.g. In a DATE
* type, the hour, minute, second and z fields will be NULLs.
*/
typedef struct toml_timestamp_t toml_timestamp_t;
struct toml_timestamp_t {