Skip to content

Commit ea09412

Browse files
add missing license headers
1 parent 8c14a30 commit ea09412

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

libc/fuzzing/__support/hashtable_fuzz.cpp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
//===-- hashtable_fuzz.cpp ------------------------------------------------===//
2+
//
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
//===----------------------------------------------------------------------===//
8+
///
9+
/// Fuzzing test for llvm-libc hashtable implementations.
10+
///
11+
//===----------------------------------------------------------------------===//
112
#include "src/__support/CPP/new.h"
213
#include "src/__support/CPP/optional.h"
314
#include "src/__support/HashTable/table.h"

libc/fuzzing/__support/uint_fuzz.cpp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
//===-- uint_fuzz.cpp -----------------------------------------------------===//
2+
//
3+
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4+
// See https://llvm.org/LICENSE.txt for license information.
5+
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
//
7+
//===----------------------------------------------------------------------===//
8+
///
9+
/// Fuzzing test for llvm-libc unsigned integer utilities.
10+
///
11+
//===----------------------------------------------------------------------===//
112
#include "src/__support/CPP/bit.h"
213
#include "src/__support/big_int.h"
314
#include "src/string/memory_utils/inline_memcpy.h"

0 commit comments

Comments
 (0)