summaryrefslogtreecommitdiffhomepage
path: root/include/LibC++
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-27 08:56:24 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-27 08:56:24 +0100
commita936410849e4df5598d9edb11132153a4f7e64f6 (patch)
tree5654054528b3d00d97ad1933b8220dab749658e0 /include/LibC++
parentd532b43153cb68d6e92c5dac58cbd3c8ab4f60af (diff)
cl! giant source code refactor.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/LibC++')
-rw-r--r--include/LibC++/__abi.h9
-rw-r--r--include/LibC++/base_alloc.h10
-rw-r--r--include/LibC++/base_exception.h10
-rw-r--r--include/LibC++/base_math.h10
-rw-r--r--include/LibC++/base_process.h10
-rw-r--r--include/LibC++/defines.h10
-rw-r--r--include/LibC++/filesystem.h10
-rw-r--r--include/LibC++/new.h10
-rw-r--r--include/LibC++/utility.h10
9 files changed, 36 insertions, 53 deletions
diff --git a/include/LibC++/__abi.h b/include/LibC++/__abi.h
index e1f2310..86e5cda 100644
--- a/include/LibC++/__abi.h
+++ b/include/LibC++/__abi.h
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#ifndef NECTAR_LIBCXX_ABI_H
#define NECTAR_LIBCXX_ABI_H
diff --git a/include/LibC++/base_alloc.h b/include/LibC++/base_alloc.h
index f8d9dbc..6c7ad06 100644
--- a/include/LibC++/base_alloc.h
+++ b/include/LibC++/base_alloc.h
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#ifndef NECTAR_LIBCXX_BASE_ALLOC_H
#define NECTAR_LIBCXX_BASE_ALLOC_H
@@ -44,4 +43,3 @@ inline void release_nothrow(KindClass ptr) noexcept {
} // namespace std::base_alloc
#endif // NECTAR_LIBCXX_BASE_ALLOC_H
-
diff --git a/include/LibC++/base_exception.h b/include/LibC++/base_exception.h
index 6148a90..ddddda9 100644
--- a/include/LibC++/base_exception.h
+++ b/include/LibC++/base_exception.h
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#ifndef NECTAR_LIBCXX_BASE_EXCEPTION_H
#define NECTAR_LIBCXX_BASE_EXCEPTION_H
@@ -38,4 +37,3 @@ inline void __throw_bad_array_new_length(const char* what) {
} // namespace std::base_exception::abi
#endif // NECTAR_LIBCXX_BASE_EXCEPTION_H
-
diff --git a/include/LibC++/base_math.h b/include/LibC++/base_math.h
index 80b222e..e4370eb 100644
--- a/include/LibC++/base_math.h
+++ b/include/LibC++/base_math.h
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#ifndef NECTAR_LIBCXX_BASE_MATH_H
#define NECTAR_LIBCXX_BASE_MATH_H
@@ -99,4 +98,3 @@ typename<class Result> using callable_type = Result (*)(size_t n, ...);
#endif
#endif // NECTAR_LIBCXX_BASE_MATH_H
-
diff --git a/include/LibC++/base_process.h b/include/LibC++/base_process.h
index 316b5a0..ccda74c 100644
--- a/include/LibC++/base_process.h
+++ b/include/LibC++/base_process.h
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#ifndef NECTAR_LIBCXX_BASE_PROCESS_H
#define NECTAR_LIBCXX_BASE_PROCESS_H
@@ -46,4 +45,3 @@ __fini_decl()
} // namespace std::base_process
#endif // NECTAR_LIBCXX_BASE_PROCESS_H
-
diff --git a/include/LibC++/defines.h b/include/LibC++/defines.h
index c631a4a..061769c 100644
--- a/include/LibC++/defines.h
+++ b/include/LibC++/defines.h
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#ifndef __NECTAR_DEFINES_H__
#define __NECTAR_DEFINES_H__
@@ -79,4 +78,3 @@ struct nothrow_t;
} // namespace std
#endif /* __NECTAR_DEFINES_H__ */
-
diff --git a/include/LibC++/filesystem.h b/include/LibC++/filesystem.h
index d3030b6..9667a78 100644
--- a/include/LibC++/filesystem.h
+++ b/include/LibC++/filesystem.h
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#ifndef __NECTAR_FS_H__
#define __NECTAR_FS_H__
@@ -22,4 +21,3 @@ class directory_iterator;
#endif
#endif // __NECTAR_FS_H__
-
diff --git a/include/LibC++/new.h b/include/LibC++/new.h
index d40c49a..f7e3abb 100644
--- a/include/LibC++/new.h
+++ b/include/LibC++/new.h
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#ifndef NECTAR_LIBCXX_NEW_H
#define NECTAR_LIBCXX_NEW_H
@@ -66,4 +65,3 @@ void operator delete(void*, size_t) noexcept;
void operator delete[](void*) noexcept;
#endif // NECTAR_LIBCXX_NEW_H
-
diff --git a/include/LibC++/utility.h b/include/LibC++/utility.h
index b56e95f..45000c3 100644
--- a/include/LibC++/utility.h
+++ b/include/LibC++/utility.h
@@ -1,8 +1,7 @@
-/* ========================================
-
- Copyright (C) 2024-2025 Amlal El Mahrouss, licensed under the Apache 2.0 license.
-
-======================================== */
+// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
+// Licensed under the Apache License, Version 2.0 (See accompanying
+// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
+// Official repository: https://github.com/nekernel-org/nectar
#ifndef LIBCXX_UTILITY_H
#define LIBCXX_UTILITY_H
@@ -28,4 +27,3 @@ inline auto move(Args&& arg) -> Args&& {
} // namespace std
#endif // LIBCXX_UTILITY_H
-