copyright years

This commit is contained in:
CK Tan 2019-02-19 10:51:51 -08:00
parent 43f7a52064
commit 05e27a7cab
2 changed files with 3 additions and 3 deletions

4
toml.c
View File

@ -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;
};

2
toml.h
View File

@ -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