From a4bd8861ddf8322031289dac0c7036621b5c6dfb Mon Sep 17 00:00:00 2001 From: Mathias Bavay Date: Thu, 17 Jun 2021 15:56:40 +0200 Subject: [PATCH 1/2] Added SPDX license identifier --- tinyexpr.h | 1 + 1 file changed, 1 insertion(+) diff --git a/tinyexpr.h b/tinyexpr.h index c9afa6c..c2cbe1a 100644 --- a/tinyexpr.h +++ b/tinyexpr.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Zlib /* * TINYEXPR - Tiny recursive descent parser and evaluation engine in C * From 85733a1ef2fd9ae8f8fcde9d3ddfd4de61e2108f Mon Sep 17 00:00:00 2001 From: Mathias Bavay Date: Thu, 17 Jun 2021 15:57:22 +0200 Subject: [PATCH 2/2] Added an SPDX license identifier --- tinyexpr.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tinyexpr.c b/tinyexpr.c index 05774ff..a5fc9d8 100755 --- a/tinyexpr.c +++ b/tinyexpr.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: Zlib /* * TINYEXPR - Tiny recursive descent parser and evaluation engine in C *