add license headers

This commit is contained in:
Sylvestre Ledru
2026-04-30 18:42:16 +02:00
parent 4528a7de7f
commit a0fe7bc9b0
8 changed files with 41 additions and 0 deletions
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use color_eyre::eyre::Result;
use either::Either;
+6
View File
@@ -1,3 +1,9 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
#[cfg(test)]
mod tests;
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use std::fmt::Debug;
use bumpalo::{Bump, collections::Vec};
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use std::{fmt::Debug, iter::Peekable};
use lexer::{LexingError, Logos, Span, SpannedIter, Token};
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
mod ast;
mod lex;
mod sexpr;
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use std::fmt::{Debug, Formatter, Result};
use crate::ast::{Atom, Body, Expr, Identifier, Statement, Variable};
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
// static POSIX: bool = false;
mod utils;
+5
View File
@@ -1,3 +1,8 @@
// This file is part of the uutils awk package.
//
// For the full copyright and license information, please view the LICENSE
// files that was distributed with this source code.
use std::fmt::{Debug, Display};
use std::panic::{UnwindSafe, catch_unwind, set_hook, take_hook};
use std::process::exit;