From da289601c20a7e5f42d6e0acb1221629a15c639a Mon Sep 17 00:00:00 2001 From: Thomas Harning Jr Date: Thu, 31 Jul 2008 00:53:35 -0400 Subject: [PATCH] decoder: Added license headers --- src/json/decode/array.lua | 4 ++++ src/json/decode/number.lua | 4 ++++ src/json/decode/object.lua | 4 ++++ src/json/decode/strings.lua | 4 ++++ src/json/decode/util.lua | 4 ++++ 5 files changed, 20 insertions(+) diff --git a/src/json/decode/array.lua b/src/json/decode/array.lua index c57687d..b07dab1 100644 --- a/src/json/decode/array.lua +++ b/src/json/decode/array.lua @@ -1,3 +1,7 @@ +--[[ + Licensed according to the included 'LICENSE' document + Author: Thomas Harning Jr +]] local lpeg = require("lpeg") local util = require("json.decode.util") diff --git a/src/json/decode/number.lua b/src/json/decode/number.lua index a39de52..743e9a7 100644 --- a/src/json/decode/number.lua +++ b/src/json/decode/number.lua @@ -1,3 +1,7 @@ +--[[ + Licensed according to the included 'LICENSE' document + Author: Thomas Harning Jr +]] local lpeg = require("lpeg") local tonumber = tonumber local util = require("json.decode.util") diff --git a/src/json/decode/object.lua b/src/json/decode/object.lua index e968370..6a99587 100644 --- a/src/json/decode/object.lua +++ b/src/json/decode/object.lua @@ -1,3 +1,7 @@ +--[[ + Licensed according to the included 'LICENSE' document + Author: Thomas Harning Jr +]] local lpeg = require("lpeg") local util = require("json.decode.util") diff --git a/src/json/decode/strings.lua b/src/json/decode/strings.lua index c63c9aa..885e275 100644 --- a/src/json/decode/strings.lua +++ b/src/json/decode/strings.lua @@ -1,3 +1,7 @@ +--[[ + Licensed according to the included 'LICENSE' document + Author: Thomas Harning Jr +]] local lpeg = require("lpeg") local util = require("json.decode.util") diff --git a/src/json/decode/util.lua b/src/json/decode/util.lua index 5b1c1aa..ef9406a 100644 --- a/src/json/decode/util.lua +++ b/src/json/decode/util.lua @@ -1,3 +1,7 @@ +--[[ + Licensed according to the included 'LICENSE' document + Author: Thomas Harning Jr +]] local lpeg = require("lpeg") local select = select local pairs, ipairs = pairs, ipairs -- 2.11.4.GIT