mirror of
https://github.com/uutils/awk.git
synced 2026-06-10 16:15:04 -07:00
add license headers
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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};
|
||||
|
||||
@@ -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};
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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};
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user