aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattn <mattn.jp@gmail.com>2014-08-18 16:56:31 +0900
committermattn <mattn.jp@gmail.com>2014-08-18 16:56:31 +0900
commit5e5d088a3662a12104630827ac6926f7626d23cf (patch)
tree83c3bb246e010c529ce6da7bac2e01df82ef6e91
parentAdd LICENSE file (diff)
downloadgolite-5e5d088a3662a12104630827ac6926f7626d23cf.tar.gz
golite-5e5d088a3662a12104630827ac6926f7626d23cf.tar.xz
Add license header
-rw-r--r--backup.go4
-rw-r--r--doc.go5
-rw-r--r--error.go4
-rw-r--r--error_test.go4
-rw-r--r--sqlite3.go4
-rw-r--r--sqlite3_other.go4
-rw-r--r--sqlite3_test.go4
-rw-r--r--sqlite3_windows.go4
8 files changed, 33 insertions, 0 deletions
diff --git a/backup.go b/backup.go
index 0e3d6fa..9e79c60 100644
--- a/backup.go
+++ b/backup.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
+//
+// Use of this source code is governed by an MIT-style
+// license that can be found in the LICENSE file.
package sqlite3
/*
diff --git a/doc.go b/doc.go
index 51364c3..f1c307b 100644
--- a/doc.go
+++ b/doc.go
@@ -1,3 +1,8 @@
+// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
+//
+// Use of this source code is governed by an MIT-style
+// license that can be found in the LICENSE file.
+
/*
Package sqlite3 provides interface to SQLite3 databases.
diff --git a/error.go b/error.go
index 52017bf..59b5051 100644
--- a/error.go
+++ b/error.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
+//
+// Use of this source code is governed by an MIT-style
+// license that can be found in the LICENSE file.
package sqlite3
import "C"
diff --git a/error_test.go b/error_test.go
index e21f215..6a8660d 100644
--- a/error_test.go
+++ b/error_test.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
+//
+// Use of this source code is governed by an MIT-style
+// license that can be found in the LICENSE file.
package sqlite3
import (
diff --git a/sqlite3.go b/sqlite3.go
index fc3e8ad..1683a48 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
+//
+// Use of this source code is governed by an MIT-style
+// license that can be found in the LICENSE file.
package sqlite3
/*
diff --git a/sqlite3_other.go b/sqlite3_other.go
index e8673ac..c87c01f 100644
--- a/sqlite3_other.go
+++ b/sqlite3_other.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
+//
+// Use of this source code is governed by an MIT-style
+// license that can be found in the LICENSE file.
// +build !windows
package sqlite3
diff --git a/sqlite3_test.go b/sqlite3_test.go
index 4f20026..0f10780 100644
--- a/sqlite3_test.go
+++ b/sqlite3_test.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
+//
+// Use of this source code is governed by an MIT-style
+// license that can be found in the LICENSE file.
package sqlite3
import (
diff --git a/sqlite3_windows.go b/sqlite3_windows.go
index e4ebc24..c5565e9 100644
--- a/sqlite3_windows.go
+++ b/sqlite3_windows.go
@@ -1,3 +1,7 @@
+// Copyright (C) 2014 Yasuhiro Matsumoto <mattn.jp@gmail.com>.
+//
+// Use of this source code is governed by an MIT-style
+// license that can be found in the LICENSE file.
package sqlite3
/*