Skip to content

Commit

Permalink
all: add license headers (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbinet authored Dec 4, 2017
1 parent f1702e4 commit f18525a
Show file tree
Hide file tree
Showing 11 changed files with 42 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright ©2013-2014 The gonuts Authors. All rights reserved.
Copyright ©2013 The go-sqlite3 Authors. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Expand Down
4 changes: 4 additions & 0 deletions btree.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The go-sqlite3 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sqlite3

import (
Expand Down
4 changes: 4 additions & 0 deletions cell.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The go-sqlite3 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sqlite3

// cellInfo holds information about an on-disk cell.
Expand Down
4 changes: 4 additions & 0 deletions page.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The go-sqlite3 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sqlite3

import "fmt"
Expand Down
4 changes: 4 additions & 0 deletions pager.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The go-sqlite3 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sqlite3

import (
Expand Down
4 changes: 4 additions & 0 deletions record.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The go-sqlite3 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sqlite3

type RecordHeader struct {
Expand Down
7 changes: 5 additions & 2 deletions sqlite.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Package sqlite3 decodes the SQLite-3 file format
//
// Copyright 2017 The go-sqlite3 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// Package sqlite3 decodes the SQLite-3 file format.
package sqlite3
4 changes: 4 additions & 0 deletions sqlite_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The go-sqlite3 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sqlite3

import (
Expand Down
4 changes: 4 additions & 0 deletions stypes.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The go-sqlite3 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sqlite3

import (
Expand Down
4 changes: 4 additions & 0 deletions table.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The go-sqlite3 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sqlite3

import (
Expand Down
4 changes: 4 additions & 0 deletions utils.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The go-sqlite3 Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package sqlite3

import (
Expand Down

0 comments on commit f18525a

Please sign in to comment.