Skip to content

Commit

Permalink
add missing license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvestre committed Jan 22, 2024
1 parent 12f3f16 commit 045435b
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bin/diffutils/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This file is part of the uutils diffutils package.
//
// For the full copyright and license information, please view the LICENSE-*
// files that was distributed with this source code.

use crate::params::*;
use std::env;

Expand Down
5 changes: 5 additions & 0 deletions lib/context-diff/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This file is part of the uutils diffutils package.
//
// For the full copyright and license information, please view the LICENSE-*
// files that was distributed with this source code.

use std::collections::VecDeque;
use std::io::Write;

Expand Down
5 changes: 5 additions & 0 deletions lib/ed-diff/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This file is part of the uutils diffutils package.
//
// For the full copyright and license information, please view the LICENSE-*
// files that was distributed with this source code.

use std::io::Write;

#[derive(Debug, PartialEq)]
Expand Down
5 changes: 5 additions & 0 deletions lib/normal-diff/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This file is part of the uutils diffutils package.
//
// For the full copyright and license information, please view the LICENSE-*
// files that was distributed with this source code.

use std::io::Write;

#[derive(Debug, PartialEq)]
Expand Down
5 changes: 5 additions & 0 deletions lib/unified-diff/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This file is part of the uutils diffutils package.
//
// For the full copyright and license information, please view the LICENSE-*
// files that was distributed with this source code.

use std::collections::VecDeque;
use std::io::Write;

Expand Down

0 comments on commit 045435b

Please sign in to comment.