copyright years
This commit is contained in:
parent
43f7a52064
commit
05e27a7cab
2 changed files with 3 additions and 3 deletions
4
toml.c
4
toml.c
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2017 CK Tan
|
Copyright (c) 2017 - 2019 CK Tan
|
||||||
https://github.com/cktan/tomlc99
|
https://github.com/cktan/tomlc99
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
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 {
|
struct token_t {
|
||||||
tokentype_t tok;
|
tokentype_t tok;
|
||||||
int lineno;
|
int lineno;
|
||||||
char* ptr;
|
char* ptr; /* points into context->start */
|
||||||
int len;
|
int len;
|
||||||
int eof;
|
int eof;
|
||||||
};
|
};
|
||||||
|
|
2
toml.h
2
toml.h
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
MIT License
|
MIT License
|
||||||
|
|
||||||
Copyright (c) 2017 CK Tan
|
Copyright (c) 2017 - 2019 CK Tan
|
||||||
https://github.com/cktan/tomlc99
|
https://github.com/cktan/tomlc99
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
|
Loading…
Reference in a new issue