copyright years
This commit is contained in:
parent
43f7a52064
commit
05e27a7cab
4
toml.c
4
toml.c
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017 CK Tan
|
||||
Copyright (c) 2017 - 2019 CK Tan
|
||||
https://github.com/cktan/tomlc99
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
|
@ -284,7 +284,7 @@ typedef struct token_t token_t;
|
|||
struct token_t {
|
||||
tokentype_t tok;
|
||||
int lineno;
|
||||
char* ptr;
|
||||
char* ptr; /* points into context->start */
|
||||
int len;
|
||||
int eof;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue